wok view libgcrypt/receipt @ rev 1671

Add perl-mime-base64
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 08 13:56:37 2008 +0000 (2008-11-08)
parents a075ff895254
children 3d5d3c9705f3
line source
1 # SliTaz package receipt.
3 PACKAGE="libgcrypt"
4 VERSION="1.4.0"
5 CATEGORY="security"
6 SHORT_DESC="Cryptographic library based on GnuPG"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libgpg-error"
9 BUILD_DEPENDS="libgpg-error-dev libgpg-error"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.gnupg.org/"
12 WGET_URL="ftp://ftp.gnupg.org/gcrypt/libgcrypt/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin $fs/usr/lib
28 cp -a $_pkg/usr/bin/dumpsexp $fs/usr/bin
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 strip -s $fs/usr/bin/*
31 strip -s $fs/usr/lib/*
32 }