mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
See release announce [1].
This commit also removes the package patch, which was accepted upstream
in [2]. The comment before "FWTS_AUTORECONF = YES" is changed to
"No configure in tarball", because the patch 0001 is removed, but the
autoreconf is still needed.
[1] https://lists.ubuntu.com/archives/fwts-devel/2026-July/014207.html
[2] 3bf8a5f393
Signed-off-by: Julien Olivain <ju.o@free.fr>
24 lines
746 B
Makefile
24 lines
746 B
Makefile
################################################################################
|
|
#
|
|
# fwts
|
|
#
|
|
################################################################################
|
|
|
|
FWTS_VERSION = 26.07.00
|
|
FWTS_SOURCE = fwts-V$(FWTS_VERSION).tar.gz
|
|
FWTS_SITE = https://github.com/fwts/fwts/releases/download/V$(FWTS_VERSION)
|
|
FWTS_LICENSE = GPL-2.0, LGPL-2.1, Custom
|
|
FWTS_LICENSE_FILES = debian/copyright
|
|
# No configure in tarball
|
|
FWTS_AUTORECONF = YES
|
|
FWTS_CONF_OPTS = --disable-werror
|
|
FWTS_DEPENDENCIES = host-bison host-flex host-pkgconf libglib2 libbsd \
|
|
$(if $(BR2_PACKAGE_BASH_COMPLETION),bash-completion) \
|
|
$(if $(BR2_PACKAGE_DTC),dtc)
|
|
|
|
ifeq ($(BR2_OPTIMIZE_0),y)
|
|
FWTS_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -O1"
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|