wok annotate gpgme/receipt @ rev 3917

syslinux/ifmem: pre-94 bioses support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 18 18:21:24 2009 +0200 (2009-08-18)
parents 6f500409e5bf
children 9f19aee613be
rev   line source
erjo@1420 1 # SliTaz package receipt.
erjo@1420 2
erjo@1420 3 PACKAGE="gpgme"
erjo@2963 4 VERSION="1.1.8"
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 DEPENDS="libgpg-error"
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