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>
26 lines
828 B
Makefile
26 lines
828 B
Makefile
################################################################################
|
|
#
|
|
# libsecret
|
|
#
|
|
################################################################################
|
|
|
|
LIBSECRET_VERSION = 0.15
|
|
LIBSECRET_SITE = http://ftp.gnome.org/pub/GNOME/sources/libsecret/$(LIBSECRET_VERSION)
|
|
LIBSECRET_SOURCE = libsecret-$(LIBSECRET_VERSION).tar.xz
|
|
LIBSECRET_LICENSE = LGPLv2.1+
|
|
LIBSECRET_LICENSE_FILES = COPYING
|
|
LIBSECRET_INSTALL_STAGING = YES
|
|
|
|
LIBSECRET_DEPENDENCIES = libglib2 host-intltool
|
|
LIBSECRET_CONF_OPTS = --disable-manpages --disable-strict --disable-coverage --enable-vala=no
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
|
LIBSECRET_DEPENDENCIES += libgcrypt
|
|
LIBSECRET_CONF_OPTS += --enable-gcrypt \
|
|
--with-libgcrypt-prefix=$(STAGING_DIR)/usr
|
|
else
|
|
LIBSECRET_CONF_OPTS += --disable-gcrypt
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|