wok view gpgme/receipt @ rev 12659

Up: slitaz-base-files (5.2) New doc fro libtaz and httphelper + improvements
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 01 09:33:10 2012 +0200 (2012-05-01)
parents 522ecffa385d
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="gpgme"
4 VERSION="1.3.1"
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 $CONFIGURE_ARGS &&
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 }