[openwrt/openwrt] libselinux: package executables into -utils

LEDE Commits lede-commits at lists.infradead.org
Thu Sep 3 21:51:17 EDT 2020


dangole pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/c2c701e0586a58f317bbb8e4622e85b3b67fc451

commit c2c701e0586a58f317bbb8e4622e85b3b67fc451
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Fri Sep 4 02:49:23 2020 +0100

    libselinux: package executables into -utils
    
    Add new package libselinux-utils containing the executable
    utilities included with libselinux.
    
    Signed-off-by: Daniel Golle <daniel at makrotopia.org>
---
 package/libs/libselinux/Makefile | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/package/libs/libselinux/Makefile b/package/libs/libselinux/Makefile
index 9270e88a04..450bdfbf3b 100644
--- a/package/libs/libselinux/Makefile
+++ b/package/libs/libselinux/Makefile
@@ -37,6 +37,13 @@ define Package/libselinux/description
 	older version supported by the kernel) when loading policy.
 endef
 
+define Package/libselinux-utils
+  SECTION:=utils
+  DEPENDS:=+libselinux
+  CATEGORY:=Utilities
+  TITLE:=Runtime SELinux utilities
+  URL:=http://selinuxproject.org/page/Main_Page
+endef
 
 # Needed to link libselinux utilities, which link against
 # libselinux.so, which indirectly depends on libpcre.so, installed in
@@ -76,5 +83,11 @@ define Package/libselinux/install
 	$(CP) $(PKG_INSTALL_DIR)/usr/lib/libselinux.so.* $(1)/usr/lib/
 endef
 
+define Package/libselinux-utils/install
+	$(INSTALL_DIR) $(1)/usr/sbin
+	$(CP) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin
+endef
+
 $(eval $(call HostBuild))
 $(eval $(call BuildPackage,libselinux))
+$(eval $(call BuildPackage,libselinux-utils))



More information about the lede-commits mailing list