wok annotate sed/receipt @ rev 15229

sed: remove wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 22 18:43:35 2013 +0200 (2013-09-22)
parents b948b682a6ab
children 7abf990db309
rev   line source
paul@3640 1 # SliTaz package receipt.
paul@3640 2
paul@3640 3 PACKAGE="sed"
paul@3640 4 VERSION="4.2.1"
paul@3640 5 CATEGORY="development"
paul@3640 6 SHORT_DESC="Gnu stream editor."
paul@3640 7 MAINTAINER="paul@slitaz.org"
pascal@15229 8 LICENSE="GPL3"
paul@3640 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@3640 10 WEB_SITE="http://www.gnu.org/software/sed/"
paul@3640 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
paul@3640 12
pascal@15229 13 DEPENDS="acl"
pascal@15229 14
paul@3640 15 # Rules to configure and make the package.
paul@3640 16 compile_rules()
paul@3640 17 {
paul@3640 18 cd $src
paul@3640 19 ./configure \
paul@3640 20 --prefix=/usr \
paul@3640 21 --infodir=/usr/share/info \
paul@3640 22 --mandir=/usr/share/man \
paul@3640 23 $CONFIGURE_ARGS &&
pascal@15229 24 make $MAKEFLAGS 2>&1 | grep -v "ERROR''@[" &&
pascal@15229 25 make DESTDIR=$DESTDIR install
paul@3640 26 }
paul@3640 27
paul@3640 28 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3640 29 genpkg_rules()
paul@3640 30 {
paul@3640 31 mkdir -p $fs/usr
pascal@15229 32 cp -a $install/usr/bin $fs/usr
paul@3640 33 }
paul@3640 34