wok view bwm-ng/receipt @ rev 19385

jpeg-turbo: --with-jpeg8
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sat Aug 20 03:35:47 2016 +0200 (2016-08-20)
parents 8bd052cdee2c
children 616d975b5c9d
line source
1 # SliTaz package receipt.
3 PACKAGE="bwm-ng"
4 VERSION="0.6.1"
5 CATEGORY="network"
6 SHORT_DESC="Bandwidth Monitor NG."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://www.gropp.org/?id=projects&sub=bwm-ng"
11 WGET_URL="https://www.gropp.org/$PACKAGE/$TARBALL"
13 DEPENDS="libtinfo"
14 BUILD_DEPENDS="ncurses-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 export LDFLAGS="$LDFLAGS -ltinfo"
20 ./configure --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }