wok view gpgme/receipt @ rev 10099

a2ps: clean up.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 14:54:14 2011 +0000 (2011-05-20)
parents 851d4c73c039
children 522ecffa385d
line source
1 # SliTaz package receipt.
3 PACKAGE="gpgme"
4 VERSION="1.3.0"
5 CATEGORY="security"
6 SHORT_DESC="C language library that allows to add support for cryptography to a program."
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gnupg.org/gpgme.html"
10 WGET_URL="ftp://ftp.gnupg.org/gcrypt/gpgme/$TARBALL"
12 DEPENDS="libgpg-error pth gnupg"
13 BUILD_DEPENDS="libgpg-error-dev pth-dev gnupg libassuan-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }