wok annotate gsasl/receipt @ rev 16009

go: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 04 16:30:31 2014 +0000 (2014-03-04)
parents c79cc4583669
children f0a575154c06
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@15265 8 LICENSE="GPL3"
pascal@2132 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@2132 10 WEB_SITE="http://www.gnu.org/software/$PACKAGE/"
pascal@2132 11 WGET_URL="ftp://alpha.gnu.org/pub/gnu/$PACKAGE/$TARBALL"
pascal@15265 12
pascal@5001 13 DEPENDS="gnutls libgcrypt libgpg-error ncurses readline zlib libidn libkrb5 \
pascal@5029 14 libcomerr3 libtasn1"
pascal@2132 15
pascal@2132 16 # Rules to configure and make the package.
pascal@2132 17 compile_rules()
pascal@2132 18 {
pascal@2132 19 cd $src
pascal@2132 20 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@2132 21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@15265 22 make $MAKEFLAGS &&
pascal@15265 23 make DESTDIR=$DESTDIR install
pascal@2132 24 }
pascal@2132 25
pascal@2132 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2132 27 genpkg_rules()
pascal@2132 28 {
pascal@2132 29 mkdir -p $fs/usr/lib
pascal@15265 30 cp -a $install/usr/bin $fs/usr
pascal@15265 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@2132 32 }
pascal@2132 33