wok view gpgme/receipt @ rev 1746

Add eaccelerator
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 22 23:27:11 2008 +0000 (2008-11-22)
parents ba812064b9f2
children 6f500409e5bf
line source
1 # SliTaz package receipt.
3 PACKED_SIZE="104.0k"
4 UNPACKED_SIZE="220.0k"
5 PACKAGE="gpgme"
6 VERSION="1.1.4"
7 CATEGORY="security"
8 SHORT_DESC="C language library that allows to add support for cryptography to a program."
9 MAINTAINER="erjo@slitaz.org"
10 DEPENDS="libgpg-error"
11 BUILD_DEPENDS="libgpg-error-dev libgpg-error"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WEB_SITE="http://www.gnupg.org/gpgme.html"
14 WGET_URL="ftp://ftp.gnupg.org/gcrypt/gpgme/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }