From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/libgcrypt/libgcrypt_1.1.91.bb | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 recipes/libgcrypt/libgcrypt_1.1.91.bb (limited to 'recipes/libgcrypt/libgcrypt_1.1.91.bb') diff --git a/recipes/libgcrypt/libgcrypt_1.1.91.bb b/recipes/libgcrypt/libgcrypt_1.1.91.bb new file mode 100644 index 0000000000..0eaeaaf9fc --- /dev/null +++ b/recipes/libgcrypt/libgcrypt_1.1.91.bb @@ -0,0 +1,33 @@ +PR = "r3" +DESCRIPTION = "A general purpose cryptographic library based on the code from GnuPG" +SECTION = "libs" +PRIORITY = "optional" +LICENSE = "GPL LGPL FDL" +DEPENDS = "libgpg-error" + +PACKAGES =+ "libgcrypt-pthread libgcrypt-pthread-dev" + +# move libgcrypt-config into -dev package +FILES_${PN} = "${libdir}/lib*.so.*" +FILES_${PN}-dev += "${bindir}" +FILES_libgcrypt-pthread = "${libdir}/libgcrypt-pthread.so.*" +FILES_libgcrypt-pthread-dev = "${libdir}/libgcrypt-pthread.*" + +SRC_URI = "ftp://ftp.gnupg.org/gcrypt/alpha/libgcrypt/libgcrypt-${PV}.tar.gz" + +inherit autotools binconfig + +EXTRA_OECONF = "--without-pth" + +do_stage() { + oe_libinstall -so -C src libgcrypt ${STAGING_LIBDIR} + oe_libinstall -so -C src libgcrypt-pthread ${STAGING_LIBDIR} + install -m 0755 src/libgcrypt-config ${STAGING_BINDIR_CROSS}/ + + install -d ${STAGING_INCDIR}/ + for X in gcrypt.h gcrypt-module.h + do + install -m 0644 src/${X} ${STAGING_INCDIR}/${X} + done + +} -- cgit 1.2.3-korg