wok view gpgme/receipt @ rev 17317

Add tix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 04 08:58:28 2014 +0100 (2014-11-04)
parents 380ffe05937a
children ac006a7bf27c
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnupg.org/gpgme.html"
11 WGET_URL="ftp://ftp.gnupg.org/gcrypt/gpgme/$TARBALL"
13 DEPENDS="libgpg-error pth gnupg"
14 BUILD_DEPENDS="libgpg-error-dev pth-dev gnupg libassuan-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 touch src/.extra-stati.h
21 ./configure --prefix=/usr $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }