wok-next diff pv/receipt @ rev 21020
Cleaning is almost finished... I should proceed to upgrades.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Nov 02 14:15:08 2018 +0200 (2018-11-02) |
parents | 12d5d6943718 |
children |
line diff
1.1 --- a/pv/receipt Sat Dec 07 19:42:19 2013 +0000 1.2 +++ b/pv/receipt Fri Nov 02 14:15:08 2018 +0200 1.3 @@ -3,31 +3,26 @@ 1.4 PACKAGE="pv" 1.5 VERSION="1.1.4" 1.6 CATEGORY="misc" 1.7 -SHORT_DESC="pipe viewer for monitoring data through a pipeline" 1.8 +SHORT_DESC="Pipe viewer for monitoring data through a pipeline" 1.9 MAINTAINER="allan316@gmail.com" 1.10 LICENSE="Artistic" 1.11 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 WEB_SITE="http://www.ivarch.com/programs/pv.shtml" 1.13 WGET_URL="http://pipeviewer.googlecode.com/files/$TARBALL" 1.14 1.15 -DEPENDS="" 1.16 -BUILD_DEPENDS="gettext" 1.17 +BUILD_DEPENDS="gettext-dev" 1.18 1.19 -# Rules to configure and make the package. 1.20 -compile_rules() 1.21 -{ 1.22 - cd $src 1.23 +compile_rules() { 1.24 ./configure \ 1.25 --prefix=/usr \ 1.26 --infodir=/usr/share/info \ 1.27 --mandir=/usr/share/man \ 1.28 $CONFIGURE_ARGS && 1.29 - make && make DESTDIR=$DESTDIR install 1.30 + make && 1.31 + make DESTDIR=$install install 1.32 } 1.33 1.34 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.35 -genpkg_rules() 1.36 -{ 1.37 +genpkg_rules() { 1.38 mkdir -p $fs/usr 1.39 cp -a $install/usr/bin $fs/usr 1.40 }