wok-next view pv/receipt @ rev 16770
Fix loop depends: 1) xorg-libXfont <-> xorg-libXfont; 2) glibmm <-> libgiomm (thanks "tazpkg check").
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Jun 20 00:27:57 2014 +0300 (2014-06-20) |
parents | bf4a09ef1d2e |
children | d5aab818505e |
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 }