wok annotate gpgme/receipt @ rev 9957

nagios-doc: bump
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed May 18 15:25:07 2011 +0200 (2011-05-18)
parents 851d4c73c039
children 522ecffa385d
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"
erjo@1420 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@1420 9 WEB_SITE="http://www.gnupg.org/gpgme.html"
erjo@1420 10 WGET_URL="ftp://ftp.gnupg.org/gcrypt/gpgme/$TARBALL"
erjo@1420 11
erjo@9943 12 DEPENDS="libgpg-error pth gnupg"
erjo@9943 13 BUILD_DEPENDS="libgpg-error-dev pth-dev gnupg libassuan-dev"
erjo@9943 14
erjo@1420 15 # Rules to configure and make the package.
erjo@1420 16 compile_rules()
erjo@1420 17 {
erjo@1420 18 cd $src
erjo@9943 19 ./configure --prefix=/usr &&
erjo@1420 20 make &&
erjo@9943 21 make DESTDIR=$DESTDIR install
erjo@1420 22 }
erjo@1420 23
erjo@1420 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1420 25 genpkg_rules()
erjo@1420 26 {
erjo@1420 27 mkdir -p $fs/usr/lib
erjo@1420 28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@1420 29 }
erjo@1420 30