wok view libassuan/receipt @ rev 5993

krb5: Upgrade to 1.8.3
author Matthew Sheets <rcx@zoominternet.net>
date Sat Aug 14 12:54:03 2010 +0000 (2010-08-14)
parents 43aeb1ee8074
children b084f9ed4a92
line source
1 # SliTaz package receipt.
3 PACKAGE="libassuan"
4 VERSION="1.0.5"
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 BUILD_DEPENDS="python" # do not skip /usr/lib/libassuan-pth.a
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make -j 4 &&
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/share
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/lib $fs/usr
30 cp -a $_pkg/usr/include $fs/usr
31 cp -a $_pkg/usr/share/aclocal $fs/usr/share
32 }