2020-08-11 14:43:51 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libsepol
|
2021-03-06 20:02:36 +00:00
|
|
|
PKG_VERSION:=3.2
|
2020-08-11 14:43:51 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2021-03-06 20:02:36 +00:00
|
|
|
PKG_SOURCE_URL:=https://github.com/SELinuxProject/selinux/releases/download/3.2
|
|
|
|
PKG_HASH:=dfc7f662af8000116e56a01de6a0394ed79be1b34b999e551346233c5dd19508
|
2020-08-11 14:43:51 +00:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2020-08-14 01:40:47 +00:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2020-08-11 14:43:51 +00:00
|
|
|
|
|
|
|
define Package/libsepol
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=SELinux binary policy manipulation library
|
|
|
|
URL:=http://selinuxproject.org/page/Main_Page
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libsepol/description
|
|
|
|
Libsepol is the binary policy manipulation library. It doesn't
|
|
|
|
depend upon or use any of the other SELinux components.
|
2020-08-14 01:40:47 +00:00
|
|
|
endef
|
2020-08-11 14:43:51 +00:00
|
|
|
|
2020-09-27 16:21:23 +00:00
|
|
|
define Package/chkcon
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=+libsepol
|
|
|
|
TITLE:=libsepol chkcon security context validation tool
|
|
|
|
URL:=http://selinuxproject.org/page/Main_Page
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/chkcon/description
|
|
|
|
chkcon - determine if a security context is valid for a given binary policy
|
|
|
|
endef
|
|
|
|
|
2020-08-11 14:43:51 +00:00
|
|
|
HOST_MAKE_FLAGS += \
|
|
|
|
PREFIX=$(STAGING_DIR_HOSTPKG) \
|
|
|
|
SHLIBDIR=$(STAGING_DIR_HOSTPKG)/lib
|
|
|
|
|
|
|
|
MAKE_FLAGS += \
|
2020-08-13 18:03:43 +00:00
|
|
|
SHLIBDIR=/usr/lib \
|
|
|
|
OS=Linux
|
2020-08-11 14:43:51 +00:00
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(call Build/Compile/Default,all)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Install
|
|
|
|
$(call Build/Install/Default,install)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libsepol.pc $(1)/usr/lib/pkgconfig/
|
|
|
|
$(SED) 's,/usr/include,$$$${prefix}/include,g' $(1)/usr/lib/pkgconfig/libsepol.pc
|
|
|
|
$(SED) 's,/usr/lib,$$$${exec_prefix}/lib,g' $(1)/usr/lib/pkgconfig/libsepol.pc
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libsepol/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libsepol.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
2020-09-27 16:21:23 +00:00
|
|
|
define Package/chkcon/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/chkcon $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
2020-08-11 14:43:51 +00:00
|
|
|
$(eval $(call HostBuild))
|
|
|
|
$(eval $(call BuildPackage,libsepol))
|
2020-09-27 16:21:23 +00:00
|
|
|
$(eval $(call BuildPackage,chkcon))
|