aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
30 lines
980 B
Makefile
30 lines
980 B
Makefile
################################################################################
|
|
#
|
|
# attr
|
|
#
|
|
################################################################################
|
|
|
|
ATTR_VERSION = 2.4.47
|
|
ATTR_SOURCE = attr-$(ATTR_VERSION).src.tar.gz
|
|
ATTR_SITE = http://download.savannah.gnu.org/releases/attr
|
|
ATTR_INSTALL_STAGING = YES
|
|
ATTR_CONF_OPTS = --enable-gettext=no
|
|
ATTR_LICENSE = GPLv2+ (programs), LGPLv2.1+ (libraries)
|
|
ATTR_LICENSE_FILES = doc/COPYING doc/COPYING.LGPL
|
|
|
|
# While the configuration system uses autoconf, the Makefiles are
|
|
# hand-written and do not use automake. Therefore, we have to hack
|
|
# around their deficiencies by passing installation paths.
|
|
ATTR_INSTALL_STAGING_OPTS = \
|
|
prefix=$(STAGING_DIR)/usr \
|
|
exec_prefix=$(STAGING_DIR)/usr \
|
|
PKG_DEVLIB_DIR=$(STAGING_DIR)/usr/lib \
|
|
install-dev install-lib
|
|
|
|
ATTR_INSTALL_TARGET_OPTS = \
|
|
prefix=$(TARGET_DIR)/usr \
|
|
exec_prefix=$(TARGET_DIR)/usr \
|
|
install install-lib
|
|
|
|
$(eval $(autotools-package))
|