aboutsummaryrefslogtreecommitdiff
path: root/utils/semodule-utils/Makefile
blob: fe2d723bbfdefbd6dc7e73167dc2a837e5664aca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=semodule-utils
PKG_VERSION:=3.6
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/SELinuxProject/selinux/releases/download/$(PKG_VERSION)
PKG_HASH:=eedb88f2b2124e538f2d614be063c0d9ac3eacc0c51a4da44500ca1ed1ba16f4

PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
PKG_LICENSE:=GPL-2.0-only
PKG_LICENSE_FILES:=LICENSE

PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1

include $(INCLUDE_DIR)/package.mk

define Package/semodule-utils/Default
  SECTION:=utils
  CATEGORY:=Utilities
  DEPENDS:=+libsepol
  TITLE:=SELinux policy module utility
  URL:=http://selinuxproject.org/page/Main_Page
endef

define Package/semodule-utils/Default/description
semodule-utils is a collection of utilities for dealing with policy
modules.
endef

define Package/semodule-utils
$(call Package/semodule-utils/Default)
  TITLE+= meta-package
  DEPENDS:= \
    semodule-expand \
    semodule-link \
    semodule-package \
    semodule-unpackage
endef

define Package/semodule-utils/description
$(call Package/semodule-utils/Default/description)

This is a meta-package that installs all of the semodule-utils tools.
endef

Package/semodule-utils/install:=:

define BuildUtil
  define Package/semodule-$(1)
  $(call Package/semodule-utils/Default)
    TITLE+= semodule_$(1)
  endef

  define Package/semodule-$(1)/description
$(call Package/semodule-utils/Default/description)

This contains the semodule_$(1) tool.
  endef

  define Package/semodule-$(1)/install
	$$(INSTALL_DIR) $$(1)/usr/bin
	$$(INSTALL_BIN) $$(PKG_INSTALL_DIR)/usr/bin/semodule_$(1) $$(1)/usr/bin/
  endef

  $$(eval $$(call BuildPackage,semodule-$(1)))
endef

$(eval $(call BuildPackage,semodule-utils))

$(eval $(call BuildUtil,expand))
$(eval $(call BuildUtil,link))
$(eval $(call BuildUtil,package))
$(eval $(call BuildUtil,unpackage))