wok view gpgme/receipt @ rev 13757

gtklp: update for rescent cups
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 03 11:01:20 2013 +0100 (2013-01-03)
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 }