Add buildroot 2018-02
This commit is contained in:
6
buildroot/package/check/Config.in
Normal file
6
buildroot/package/check/Config.in
Normal file
@@ -0,0 +1,6 @@
|
||||
config BR2_PACKAGE_CHECK
|
||||
bool "check"
|
||||
help
|
||||
Check is a unit testing framework for C.
|
||||
|
||||
https://libcheck.github.io/check/
|
||||
4
buildroot/package/check/check.hash
Normal file
4
buildroot/package/check/check.hash
Normal file
@@ -0,0 +1,4 @@
|
||||
# Locally computed
|
||||
sha256 24f7a48aae6b74755bcbe964ce8bc7240f6ced2141f8d9cf480bc3b3de0d5616 check-0.11.0.tar.gz
|
||||
# License files, locally calculated
|
||||
sha256 a9bdde5616ecdd1e980b44f360600ee8783b1f99b8cc83a2beb163a0a390e861 COPYING.LESSER
|
||||
20
buildroot/package/check/check.mk
Normal file
20
buildroot/package/check/check.mk
Normal file
@@ -0,0 +1,20 @@
|
||||
################################################################################
|
||||
#
|
||||
# check
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CHECK_VERSION = 0.11.0
|
||||
CHECK_SITE = https://github.com/libcheck/check/releases/download/$(CHECK_VERSION)
|
||||
CHECK_INSTALL_STAGING = YES
|
||||
CHECK_DEPENDENCIES = host-pkgconf
|
||||
CHECK_LICENSE = LGPL-2.1+
|
||||
CHECK_LICENSE_FILES = COPYING.LESSER
|
||||
|
||||
# Having checkmk in the target makes no sense
|
||||
define CHECK_REMOVE_CHECKMK
|
||||
rm -f $(TARGET_DIR)/usr/bin/checkmk
|
||||
endef
|
||||
CHECK_POST_INSTALL_TARGET_HOOKS += CHECK_REMOVE_CHECKMK
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user