mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
58a5877846
cpe:/a:selinuxproject:secilc is not a correct CPE ID for secilc: https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3🅰️selinuxproject:secilc Fixes: 9ee7c1ec60e23f25f5d275c6439ce93aec914e1c (secilc: adds new package) Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Link: https://github.com/openwrt/openwrt/pull/15298 Signed-off-by: Robert Marko <robimarko@gmail.com>
66 lines
1.7 KiB
Makefile
66 lines
1.7 KiB
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=secilc
|
|
PKG_VERSION:=3.5
|
|
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:=3eebc5a1f97847fa530cf90654b9f3b8f21a13c9ea3d07495325651580cd3373
|
|
HOST_BUILD_DEPENDS:=libsepol/host
|
|
|
|
PKG_MAINTAINER:=Dominick Grift <dominick.grift@defensec.nl>
|
|
PKG_LICENSE:=BSD-2-Clause
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
HOST_LDFLAGS+=-Wl,-rpath=$(STAGING_DIR_HOSTPKG)/lib
|
|
HOST_MAKE_FLAGS += \
|
|
DESTDIR=$(STAGING_DIR_HOSTPKG) \
|
|
PREFIX=
|
|
|
|
define Package/secilc
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=SELinux Common Intermediate Language (CIL) Compiler
|
|
URL:=http://selinuxproject.org/page/Main_Page
|
|
DEPENDS:=+libsepol
|
|
endef
|
|
|
|
define Package/secilc/description
|
|
The SELinux CIL Compiler is a compiler that converts the CIL language as
|
|
described on the CIL design wiki into a kernel binary policy file.
|
|
Please see the CIL Design Wiki at:
|
|
http://github.com/SELinuxProject/cil/wiki/
|
|
for more information about the goals and features on the CIL language.
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/Default,secilc)
|
|
endef
|
|
|
|
define Host/Compile
|
|
$(call Host/Compile/Default,secilc)
|
|
endef
|
|
|
|
define Host/Install
|
|
$(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/bin
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/secilc $(STAGING_DIR_HOSTPKG)/bin
|
|
endef
|
|
|
|
define Package/secilc/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/secilc $(1)/usr/bin
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,secilc))
|
|
$(eval $(call HostBuild))
|