mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
7
package/pax-utils/Config.in
Normal file
7
package/pax-utils/Config.in
Normal file
@@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_PAX_UTILS
|
||||
bool "pax-utils"
|
||||
help
|
||||
ELF related utils for ELF 32/64 binaries that can check files
|
||||
for security relevant properties.
|
||||
|
||||
http://www.gentoo.org/proj/en/hardened/pax-utils.xml
|
||||
2
package/pax-utils/pax-utils.hash
Normal file
2
package/pax-utils/pax-utils.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 7f4a7f8db6b4743adde7582fa48992ad01776796fcde030683732f56221337d9 pax-utils-1.2.2.tar.xz
|
||||
39
package/pax-utils/pax-utils.mk
Normal file
39
package/pax-utils/pax-utils.mk
Normal file
@@ -0,0 +1,39 @@
|
||||
################################################################################
|
||||
#
|
||||
# pax-utils
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PAX_UTILS_VERSION = 1.2.2
|
||||
PAX_UTILS_SITE = http://distfiles.gentoo.org/distfiles
|
||||
PAX_UTILS_SOURCE = pax-utils-$(PAX_UTILS_VERSION).tar.xz
|
||||
PAX_UTILS_LICENSE = GPL-2.0
|
||||
PAX_UTILS_LICENSE_FILES = COPYING
|
||||
|
||||
PAX_UTILS_DEPENDENCIES = host-pkgconf
|
||||
PAX_UTILS_CONF_OPTS = --without-python
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBCAP),y)
|
||||
PAX_UTILS_DEPENDENCIES += libcap
|
||||
PAX_UTILS_CONF_OPTS += --with-caps
|
||||
else
|
||||
PAX_UTILS_CONF_OPTS += --without-caps
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBSECCOMP),y)
|
||||
PAX_UTILS_DEPENDENCIES += libseccomp
|
||||
PAX_UTILS_CONF_OPTS += --with-seccomp
|
||||
else
|
||||
PAX_UTILS_CONF_OPTS += --without-seccomp
|
||||
endif
|
||||
|
||||
# lddtree and symtree need bash
|
||||
ifeq ($(BR2_PACKAGE_BASH),)
|
||||
define PAX_UTILS_REMOVE_BASH_TOOLS
|
||||
rm -f $(TARGET_DIR)/usr/bin/{lddtree,symtree}
|
||||
endef
|
||||
endif
|
||||
PAX_UTILS_POST_INSTALL_TARGET_HOOKS += PAX_UTILS_REMOVE_BASH_TOOLS
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user