# HG changeset patch # User Christophe Lincoln # Date 1252536390 -7200 # Node ID 43aeb1ee80744cfc4935bf57b6753cf159983fe5 # Parent de51af17bfe3d9d3417bdc55bd1ca98b94b55ab5 Add: libassuan (IPC library) diff -r de51af17bfe3 -r 43aeb1ee8074 libassuan/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libassuan/receipt Thu Sep 10 00:46:30 2009 +0200 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="libassuan" +VERSION="1.0.5" +CATEGORY="security" +SHORT_DESC="IPC library used by some of the other GnuPG related packages." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.gnupg.org/" +WGET_URL="ftp://ftp.gnupg.org/gcrypt/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib $fs/usr + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/share/aclocal $fs/usr/share +}