diff options
author | Phil Blundell <philb@gnu.org> | 2004-11-21 19:43:33 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-11-21 19:43:33 +0000 |
commit | 19fab2aabdae7647675f1a9cd9e651a61413a0bc (patch) | |
tree | 2f92b4c8d1aa5f2d57d4e28846ee84deb31bb018 /gpgme | |
parent | 3d114bb4c8991810e69a92d1574c82c23027217d (diff) |
add some missing DEPENDS
BKrev: 41a0efe5V5UWOWj2_wykbUdrEBQ_7w
Diffstat (limited to 'gpgme')
-rw-r--r-- | gpgme/gpgme_1.0.0.oe | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gpgme/gpgme_1.0.0.oe b/gpgme/gpgme_1.0.0.oe index e69de29bb2..67d3f2bba9 100644 --- a/gpgme/gpgme_1.0.0.oe +++ b/gpgme/gpgme_1.0.0.oe @@ -0,0 +1,20 @@ +SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-${PV}.tar.gz" + +DEPENDS = "libgpg-error pth libassuan" + +EXTRA_OECONF = "--with-pth=${STAGING_DIR}/${HOST_SYS} --without-pth-test --with-gpg=${bindir}/gpg --without-gpgsm" + +inherit autotools + +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/ +} + |