wok annotate gsasl/receipt @ rev 15228

gsasl: remove wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 22 18:19:03 2013 +0200 (2013-09-22)
parents 116602ef2d27
children c79cc4583669
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@15228 20 make $MAKEFLAGS 2>&1 | grep -v "ERROR''@[" &&
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