wok annotate gpgme/receipt @ rev 6329

Up: gnupg to 2.0.16. gpgme, gpgme-dev to 1.3.0. libassuan to 2.0.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Sep 17 18:47:50 2010 +0000 (2010-09-17)
parents 9f19aee613be
children 851d4c73c039
rev   line source
erjo@1420 1 # SliTaz package receipt.
erjo@1420 2
erjo@1420 3 PACKAGE="gpgme"
slaxemulator@6329 4 VERSION="1.3.0"
erjo@1420 5 CATEGORY="security"
erjo@1420 6 SHORT_DESC="C language library that allows to add support for cryptography to a program."
erjo@1420 7 MAINTAINER="erjo@slitaz.org"
pascal@5001 8 DEPENDS="libgpg-error pth"
pascal@1511 9 BUILD_DEPENDS="libgpg-error-dev libgpg-error"
erjo@1420 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@1420 11 WEB_SITE="http://www.gnupg.org/gpgme.html"
erjo@1420 12 WGET_URL="ftp://ftp.gnupg.org/gcrypt/gpgme/$TARBALL"
erjo@1420 13
erjo@1420 14 # Rules to configure and make the package.
erjo@1420 15 compile_rules()
erjo@1420 16 {
erjo@1420 17 cd $src
erjo@1420 18 ./configure --prefix=/usr \
erjo@1420 19 --infodir=/usr/share/info \
erjo@1420 20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
erjo@1420 21 make &&
erjo@1420 22 make DESTDIR=$PWD/_pkg install
erjo@1420 23 }
erjo@1420 24
erjo@1420 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1420 26 genpkg_rules()
erjo@1420 27 {
erjo@1420 28 mkdir -p $fs/usr/lib
erjo@1420 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@1420 30 }
erjo@1420 31