wok view sed/receipt @ rev 13649

Added: gvolwheel & pnmixer (tray volume control); netrik (text web browser/pager); nanoshot (python tray screenshot tool); font-manager; fbterm (framebuffer terminal); faenza-icon-theme (need clean more)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 16 02:22:49 2012 +0000 (2012-11-16)
parents 672d4595c451
children 99f307fc1c76
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 DEPENDS="acl"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/sed/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 }