300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
21 lines
528 B
Makefile
21 lines
528 B
Makefile
#############################################################
|
|
#
|
|
# libgcrypt
|
|
#
|
|
#############################################################
|
|
|
|
LIBGCRYPT_VERSION = 1.5.0
|
|
LIBGCRYPT_SOURCE = libgcrypt-$(LIBGCRYPT_VERSION).tar.bz2
|
|
LIBGCRYPT_SITE = ftp://ftp.gnupg.org/gcrypt/libgcrypt
|
|
LIBGCRYPT_INSTALL_STAGING = YES
|
|
|
|
LIBGCRYPT_CONF_ENV = \
|
|
ac_cv_sys_symbol_underscore=no
|
|
LIBGCRYPT_CONF_OPT = \
|
|
--disable-optimization \
|
|
--with-gpg-error-prefix=$(STAGING_DIR)/usr
|
|
|
|
LIBGCRYPT_DEPENDENCIES = libgpg-error
|
|
|
|
$(eval $(call AUTOTARGETS))
|