diff options
author | Patrick Steiner <law@a1.net> | 2005-07-19 12:06:54 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-19 12:06:54 +0000 |
commit | a6f5f86d2c6f1ed05ab471bbc719f5365efa1e7a (patch) | |
tree | f71b5eda4f54d5f0f309350628f6667bbb6f4c77 /packages/gpgme | |
parent | f1d95e32a275db0688d04f2d6ac255b2fb1771ba (diff) |
added ggme 1.0.3 (required for sylpheed 2.0.0beta6)
Diffstat (limited to 'packages/gpgme')
-rw-r--r-- | packages/gpgme/gpgme_1.0.3.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/gpgme/gpgme_1.0.3.bb b/packages/gpgme/gpgme_1.0.3.bb new file mode 100644 index 0000000000..8292991a89 --- /dev/null +++ b/packages/gpgme/gpgme_1.0.3.bb @@ -0,0 +1,22 @@ +LICENSE = "GPL" +SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-${PV}.tar.gz" +PR = "r1" + +DEPENDS = "libgpg-error pth libassuan" + +EXTRA_OECONF = "--with-pth=${STAGING_DIR}/${HOST_SYS} --without-pth-test --with-gpg=${bindir}/gpg --without-gpgsm" + +inherit autotools binconfig + +do_stage() { + autotools_stage_includes + + install -d ${STAGING_LIBDIR} + oe_libinstall -C gpgme -so libgpgme ${STAGING_LIBDIR} + oe_libinstall -C gpgme -so libgpgme-pth ${STAGING_LIBDIR} + oe_libinstall -C gpgme -so libgpgme-pthread ${STAGING_LIBDIR} + + install -d ${STAGING_DATADIR}/aclocal + install -m 0644 gpgme/gpgme.m4 ${STAGING_DATADIR}/aclocal/ +} + |