# HG changeset patch # User Pascal Bellard # Date 1233609435 0 # Node ID 6482ef7f60b160b840b4a661a8b5d8d1091ed845 # Parent ffe319269070810cd18657bbc2ae6a81c3fae33d Add gsasl diff -r ffe319269070 -r 6482ef7f60b1 gsasl-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gsasl-dev/receipt Mon Feb 02 21:17:15 2009 +0000 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="gsasl-dev" +VERSION="0.2.29" +CATEGORY="development" +SHORT_DESC="Simple Authentication and Security Layer, development files." +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://www.gnu.org/software/$PACKAGE/" +WANTED="gsasl" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/lib/*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib +} + diff -r ffe319269070 -r 6482ef7f60b1 gsasl/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gsasl/receipt Mon Feb 02 21:17:15 2009 +0000 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="gsasl" +VERSION="0.2.29" +CATEGORY="system-tools" +SHORT_DESC="Simple Authentication and Security Layer." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.gnu.org/software/$PACKAGE/" +WGET_URL="ftp://alpha.gnu.org/pub/gnu/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib +} +