wok-current annotate gpgme/receipt @ rev 12710
cross-arm-gcc: improve receipt, use --libexecdir= and --disable-threads
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri May 04 15:59:16 2012 +0200 (2012-05-04) |
parents | 522ecffa385d |
children | 380ffe05937a |
rev | line source |
---|---|
erjo@1420 | 1 # SliTaz package receipt. |
erjo@1420 | 2 |
erjo@1420 | 3 PACKAGE="gpgme" |
slaxemulator@11188 | 4 VERSION="1.3.1" |
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 |
gokhlayeh@11573 | 19 ./configure --prefix=/usr $CONFIGURE_ARGS && |
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 |