wok view pv/receipt @ rev 15957

Add: compiz-plugins-extra + compiz-plugins-unsupported
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 23 19:58:48 2014 +0100 (2014-02-23)
parents bf4a09ef1d2e
children b1f5d3871897
line source
1 # SliTaz package receipt.
3 PACKAGE="pv"
4 VERSION="1.1.4"
5 CATEGORY="misc"
6 SHORT_DESC="pipe viewer for monitoring data through a pipeline"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="Artistic"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.ivarch.com/programs/pv.shtml"
11 WGET_URL="http://pipeviewer.googlecode.com/files/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="gettext"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && 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 }