wok view gpgme/receipt @ rev 9742

Fix: claws-mail BUILD_DEPENDS )libassuan, also use xorg-dev for all Xorg dev pkgs) and clean receipt
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 10 02:32:37 2011 +0200 (2011-05-10)
parents b084f9ed4a92
children 4b028f6a84ef
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 DEPENDS="libgpg-error pth gnupg"
9 BUILD_DEPENDS="libgpg-error-dev pth-dev gnupg"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.gnupg.org/gpgme.html"
12 WGET_URL="ftp://ftp.gnupg.org/gcrypt/gpgme/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }