wok annotate sed/receipt @ rev 17543

Up busybox (1.23.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 27 16:55:03 2015 +0100 (2015-01-27)
parents dead8955c3ca
children 479b6badd960
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"
pankso@16465 12 HOST_ARCH="i486 arm"
paul@3640 13
pascal@15229 14 DEPENDS="acl"
pascal@15229 15
paul@3640 16 # Rules to configure and make the package.
paul@3640 17 compile_rules()
paul@3640 18 {
paul@3640 19 ./configure \
paul@3640 20 $CONFIGURE_ARGS &&
pankso@16465 21 make $MAKEFLAGS && make install
paul@3640 22 }
paul@3640 23
paul@3640 24 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3640 25 genpkg_rules()
paul@3640 26 {
paul@3640 27 mkdir -p $fs/usr
pascal@15229 28 cp -a $install/usr/bin $fs/usr
paul@3640 29 }
paul@3640 30