mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
The old URL redirects to the new URL. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
742 B
Makefile
25 lines
742 B
Makefile
################################################################################
|
|
#
|
|
# atf
|
|
#
|
|
################################################################################
|
|
|
|
ATF_VERSION = 0.23
|
|
ATF_SITE = https://github.com/freebsd/atf/releases/download/atf-$(ATF_VERSION)
|
|
ATF_INSTALL_STAGING = YES
|
|
ATF_LICENSE = BSD-2-Clause, BSD-3-Clause
|
|
ATF_LICENSE_FILES = COPYING
|
|
# Ships a beta libtool version hence our patch doesn't apply.
|
|
ATF_AUTORECONF = YES
|
|
# Do not install precompiled tests.
|
|
ATF_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) install-exec
|
|
|
|
# ATF_SHELL defaults to the host's bash
|
|
ATF_CONF_ENV = \
|
|
kyua_cv_getopt_plus=yes \
|
|
kyua_cv_attribute_noreturn=yes \
|
|
kyua_cv_getcwd_works=yes \
|
|
ATF_SHELL=/bin/sh
|
|
|
|
$(eval $(autotools-package))
|