wok-stable annotate gpgme/receipt @ rev 6292
Up: gpodder to 2.8.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed Sep 15 20:18:09 2010 +0000 (2010-09-15) |
parents | a271a4190181 |
children | b084f9ed4a92 |
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" |
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 |