mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
The current version of attr uses a canned custom buildsystem, that
is borked in quite a few ways (no support for static, overwrites
destination files without unlinking...)
There has been a release recently-ish, with a complete overhaul of
the buildsystem. We can now drop all our patches.
The option to disable NLS has changed, so update accordingly.
Fixes: #10986
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Yegor Yefremov <yegorslists@googlemail.com>
[Arnout: use the original SITE instead of a specific mirror]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
(cherry picked from commit b02616cff4)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
19 lines
523 B
Makefile
19 lines
523 B
Makefile
################################################################################
|
|
#
|
|
# attr
|
|
#
|
|
################################################################################
|
|
|
|
ATTR_VERSION = 2.4.48
|
|
ATTR_SITE = http://download.savannah.gnu.org/releases/attr
|
|
ATTR_LICENSE = GPL-2.0+ (programs), LGPL-2.1+ (libraries)
|
|
ATTR_LICENSE_FILES = doc/COPYING doc/COPYING.LGPL
|
|
|
|
ATTR_INSTALL_STAGING = YES
|
|
|
|
ATTR_CONF_OPTS = --disable-nls
|
|
HOST_ATTR_CONF_OPTS = --disable-nls
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|