wok view libassuan/receipt @ rev 9281

Add some perl modules for backuppc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 16 09:12:53 2011 +0100 (2011-03-16)
parents b084f9ed4a92
children 351453c239dd
line source
1 # SliTaz package receipt.
3 PACKAGE="libassuan"
4 VERSION="2.0.1"
5 CATEGORY="security"
6 SHORT_DESC="IPC library used by some of the other GnuPG related packages."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gnupg.org/"
10 WGET_URL="ftp://ftp.gnupg.org/gcrypt/$PACKAGE/$TARBALL"
11 DEPENDS="libgpg-error"
12 BUILD_DEPENDS="python pkg-config" # do not skip /usr/lib/libassuan-pth.a
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure && make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
26 }