wok-6.x annotate gpgme/receipt @ rev 18678
Add xpenguins (2.2), xpenguins_themes (1.0)
author | Lucas Levrel <llevrel@yahoo.fr> |
---|---|
date | Mon Dec 07 22:10:28 2015 +0100 (2015-12-07) |
parents | 380ffe05937a |
children | ac006a7bf27c |
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" |
pascal@15000 | 8 LICENSE="GPL2" |
erjo@1420 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@1420 | 10 WEB_SITE="http://www.gnupg.org/gpgme.html" |
erjo@1420 | 11 WGET_URL="ftp://ftp.gnupg.org/gcrypt/gpgme/$TARBALL" |
erjo@1420 | 12 |
erjo@9943 | 13 DEPENDS="libgpg-error pth gnupg" |
erjo@9943 | 14 BUILD_DEPENDS="libgpg-error-dev pth-dev gnupg libassuan-dev" |
erjo@9943 | 15 |
erjo@1420 | 16 # Rules to configure and make the package. |
erjo@1420 | 17 compile_rules() |
erjo@1420 | 18 { |
erjo@1420 | 19 cd $src |
pascal@15159 | 20 touch src/.extra-stati.h |
gokhlayeh@11573 | 21 ./configure --prefix=/usr $CONFIGURE_ARGS && |
erjo@1420 | 22 make && |
erjo@9943 | 23 make DESTDIR=$DESTDIR install |
erjo@1420 | 24 } |
erjo@1420 | 25 |
erjo@1420 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@1420 | 27 genpkg_rules() |
erjo@1420 | 28 { |
erjo@1420 | 29 mkdir -p $fs/usr/lib |
pascal@15000 | 30 cp -a $install/usr/lib/*.so* $fs/usr/lib |
erjo@1420 | 31 } |
erjo@1420 | 32 |