wok annotate libassuan/receipt @ rev 4395

tazbb: allow packages with symlinks only (typo)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 16 15:46:45 2009 +0200 (2009-10-16)
parents
children 2f845953ed17
rev   line source
pankso@4060 1 # SliTaz package receipt.
pankso@4060 2
pankso@4060 3 PACKAGE="libassuan"
pankso@4060 4 VERSION="1.0.5"
pankso@4060 5 CATEGORY="security"
pankso@4060 6 SHORT_DESC="IPC library used by some of the other GnuPG related packages."
pankso@4060 7 MAINTAINER="pankso@slitaz.org"
pankso@4060 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@4060 9 WEB_SITE="http://www.gnupg.org/"
pankso@4060 10 WGET_URL="ftp://ftp.gnupg.org/gcrypt/$PACKAGE/$TARBALL"
pankso@4060 11
pankso@4060 12 # Rules to configure and make the package.
pankso@4060 13 compile_rules()
pankso@4060 14 {
pankso@4060 15 cd $src
pankso@4060 16 ./configure \
pankso@4060 17 --prefix=/usr \
pankso@4060 18 $CONFIGURE_ARGS &&
pankso@4060 19 make &&
pankso@4060 20 make DESTDIR=$PWD/_pkg install
pankso@4060 21 }
pankso@4060 22
pankso@4060 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@4060 24 genpkg_rules()
pankso@4060 25 {
pankso@4060 26 mkdir -p $fs/usr/share
pankso@4060 27 cp -a $_pkg/usr/bin $fs/usr
pankso@4060 28 cp -a $_pkg/usr/lib $fs/usr
pankso@4060 29 cp -a $_pkg/usr/include $fs/usr
pankso@4060 30 cp -a $_pkg/usr/share/aclocal $fs/usr/share
pankso@4060 31 }