wok view gpa/receipt @ rev 9404

Up: slitaz-mercurial-style to 1.0.7. You didn't tag. Also no need for high jumps since it will make everything else 2.0.x for linearer versioning.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Mar 27 18:50:59 2011 +0000 (2011-03-27)
parents 08e79d7c5e4b
children 7dc24f1ea8ba
line source
1 # SliTaz package receipt.
3 PACKAGE="gpa"
4 VERSION="0.9.0"
5 CATEGORY="security"
6 SHORT_DESC="Gnu Privacy Assistant"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gnupg gpgme libgpg-error gtk+ xorg-libXdamage pinentry-gtk"
9 BUILD_DEPENDS="autoconf automake"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.gnupg.org/"
12 WGET_URL="http://wald.intevation.org/frs/download.php/603/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 patch -p0 < $stuff/gpa-0.9.0-libassuan2.patch &&
19 autoreconf &&
20 ./configure && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share/locale
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/applications $fs/usr/share
30 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
31 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
33 }