wok-6.x annotate gsasl/receipt @ rev 10757
nanochess: get source in $SOURCES_REPOSITORY
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue May 31 11:34:51 2011 +0200 (2011-05-31) |
parents | 9f19aee613be |
children | 4e2cb1cd3aca |
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@5001 | 11 DEPENDS="gnutls libgcrypt libgpg-error ncurses readline zlib libidn libkrb5 \ |
pascal@5029 | 12 libcomerr3 libtasn1" |
pascal@2132 | 13 |
pascal@2132 | 14 # Rules to configure and make the package. |
pascal@2132 | 15 compile_rules() |
pascal@2132 | 16 { |
pascal@2132 | 17 cd $src |
pascal@2132 | 18 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@2132 | 19 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2132 | 20 make && |
pascal@2132 | 21 make DESTDIR=$PWD/_pkg install |
pascal@2132 | 22 } |
pascal@2132 | 23 |
pascal@2132 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2132 | 25 genpkg_rules() |
pascal@2132 | 26 { |
pascal@2132 | 27 mkdir -p $fs/usr/lib |
pascal@2132 | 28 cp -a $_pkg/usr/bin $fs/usr |
pascal@2132 | 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pascal@2132 | 30 } |
pascal@2132 | 31 |