wok view pv/receipt @ rev 16365

Up libusb (1.0.18), libusb-compat (0.1.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 14 10:35:34 2014 +0000 (2014-04-14)
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 }