mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 14:03:29 +08:00
a54cde49d5
The popt-1.16.tar.gz file is no more available at current URL and rmp5.org is online. Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
656 B
Makefile
28 lines
656 B
Makefile
################################################################################
|
|
#
|
|
# popt
|
|
#
|
|
################################################################################
|
|
|
|
POPT_VERSION = 1.16
|
|
POPT_SITE = http://rpm5.org/files/popt
|
|
POPT_INSTALL_STAGING = YES
|
|
POPT_LICENSE = MIT
|
|
POPT_LICENSE_FILES = COPYING
|
|
POPT_AUTORECONF = YES
|
|
POPT_GETTEXTIZE = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_GETTEXT),y)
|
|
POPT_DEPENDENCIES += gettext
|
|
endif
|
|
|
|
POPT_CONF_ENV = ac_cv_va_copy=yes
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
POPT_CONF_ENV += am_cv_lib_iconv=yes
|
|
POPT_CONF_OPTS += --with-libiconv-prefix=$(STAGING_DIR)/usr
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|