wok annotate gpa/receipt @ rev 15331

gpa: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 28 11:17:58 2013 +0000 (2013-09-28)
parents b7319995b37e
children 2a3377f9cb0b
rev   line source
erjo@1345 1 # SliTaz package receipt.
erjo@1345 2
erjo@1345 3 PACKAGE="gpa"
gokhlayeh@9185 4 VERSION="0.9.0"
erjo@1345 5 CATEGORY="security"
erjo@1345 6 SHORT_DESC="Gnu Privacy Assistant"
erjo@1345 7 MAINTAINER="erjo@slitaz.org"
pascal@15331 8 LICENSE="GPL3"
erjo@1345 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@1345 10 WEB_SITE="http://www.gnupg.org/"
gokhlayeh@9185 11 WGET_URL="http://wald.intevation.org/frs/download.php/603/$TARBALL"
erjo@1345 12
erjo@9932 13 DEPENDS="gnupg gpgme libgpg-error gtk+ xorg-libXdamage pinentry-gtk"
pascal@15331 14 BUILD_DEPENDS="gnupg autoconf automake gpgme-dev libgpg-error-dev \
pascal@15331 15 libassuan-dev gtk+-dev"
erjo@9932 16
erjo@1345 17 # Rules to configure and make the package.
erjo@1345 18 compile_rules()
erjo@1345 19 {
erjo@1345 20 cd $src
gokhlayeh@9185 21 patch -p0 < $stuff/gpa-0.9.0-libassuan2.patch &&
gokhlayeh@9185 22 autoreconf &&
gokhlayeh@11573 23 ./configure $CONFIGURE_ARGS && make && make install
erjo@1345 24 }
erjo@1345 25
erjo@1345 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1345 27 genpkg_rules()
erjo@1345 28 {
erjo@1345 29 mkdir -p $fs/usr/share/locale
erjo@1345 30
pascal@15331 31 cp -a $install/usr/bin $fs/usr
pascal@15331 32 cp -a $install/usr/share/applications $fs/usr/share
pascal@15331 33 cp -a $install/usr/share/pixmaps $fs/usr/share
pascal@15331 34 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
erjo@1345 35 }
erjo@1345 36