wok view sed/receipt @ rev 15857

Up: audacious to 3.4.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Jan 29 20:09:33 2014 +0000 (2014-01-29)
parents 7abf990db309
children 4c9e6fbf8207
line source
1 # SliTaz package receipt.
3 PACKAGE="sed"
4 VERSION="4.2.1"
5 CATEGORY="development"
6 SHORT_DESC="Gnu stream editor."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/sed/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="acl"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make $MAKEFLAGS &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }