wok annotate gsasl/receipt @ rev 2377
slitaz-eeepc: add full support for 701 and 1000
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Mar 07 21:30:55 2009 +0100 (2009-03-07) |
parents | |
children | dbf873bf74a8 |
rev | line source |
---|---|
pascal@2132 | 1 # SliTaz package receipt. |
pascal@2132 | 2 |
pascal@2132 | 3 PACKAGE="gsasl" |
pascal@2132 | 4 VERSION="0.2.29" |
pascal@2132 | 5 CATEGORY="system-tools" |
pascal@2132 | 6 SHORT_DESC="Simple Authentication and Security Layer." |
pascal@2132 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@2132 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@2132 | 9 WEB_SITE="http://www.gnu.org/software/$PACKAGE/" |
pascal@2132 | 10 WGET_URL="ftp://alpha.gnu.org/pub/gnu/$PACKAGE/$TARBALL" |
pascal@2132 | 11 |
pascal@2132 | 12 # Rules to configure and make the package. |
pascal@2132 | 13 compile_rules() |
pascal@2132 | 14 { |
pascal@2132 | 15 cd $src |
pascal@2132 | 16 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@2132 | 17 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2132 | 18 make && |
pascal@2132 | 19 make DESTDIR=$PWD/_pkg install |
pascal@2132 | 20 } |
pascal@2132 | 21 |
pascal@2132 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2132 | 23 genpkg_rules() |
pascal@2132 | 24 { |
pascal@2132 | 25 mkdir -p $fs/usr/lib |
pascal@2132 | 26 cp -a $_pkg/usr/bin $fs/usr |
pascal@2132 | 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pascal@2132 | 28 } |
pascal@2132 | 29 |