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>
27 lines
777 B
Makefile
27 lines
777 B
Makefile
################################################################################
|
|
#
|
|
# xmlstarlet
|
|
#
|
|
################################################################################
|
|
|
|
XMLSTARLET_VERSION = 1.5.0
|
|
XMLSTARLET_SITE = http://downloads.sourceforge.net/project/xmlstar/xmlstarlet/$(XMLSTARLET_VERSION)
|
|
XMLSTARLET_LICENSE = MIT
|
|
XMLSTARLET_LICENSE_FILES = COPYING
|
|
|
|
XMLSTARLET_DEPENDENCIES += libxml2 libxslt \
|
|
$(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
|
|
|
XMLSTARLET_CONF_OPTS += \
|
|
--with-libxml-prefix=${STAGING_DIR}/usr \
|
|
--with-libxslt-prefix=${STAGING_DIR}/usr \
|
|
--with-libiconv-prefix=${STAGING_DIR}/usr
|
|
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),y)
|
|
XMLSTARLET_CONF_OPTS += --enable-static-libs
|
|
else
|
|
XMLSTARLET_CONF_OPTS += --disable-static-libs
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|