wok-6.x annotate gpgme/receipt @ rev 2938
gst-ffmpeg: fix receipt
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu May 07 22:41:46 2009 +0200 (2009-05-07) |
parents | 3d99ecce2d4b |
children | a271a4190181 |
rev | line source |
---|---|
erjo@1420 | 1 # SliTaz package receipt. |
erjo@1420 | 2 |
erjo@1420 | 3 PACKAGE="gpgme" |
erjo@1420 | 4 VERSION="1.1.4" |
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 |