wok view libassuan/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents 76495b6f5020
children 4904e3d374a9
line source
1 # SliTaz package receipt.
3 PACKAGE="libassuan"
4 VERSION="2.0.3"
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"
12 DEPENDS="libgpg-error"
13 BUILD_DEPENDS="python pkg-config libgpg-error-dev" # do not skip /usr/lib/libassuan-pth.a
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure $CONFIGURE_ARGS && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
27 }