wok-next view slurm/receipt @ rev 18877
Up slitaz-base-files(298), slitaz-boot-scripts(422)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Mon Feb 08 10:29:19 2016 +0200 (2016-02-08) |
parents | 3ba8d2c9720d |
children | 466bca9334ef |
line source
1 # SliTaz package receipt.
3 PACKAGE="slurm"
4 VERSION="0.3.3"
5 CATEGORY="network"
6 SHORT_DESC="Realtime network interface monitor."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.wormulon.net/slurm/"
11 WGET_URL="http://www.wormulon.net/slurm/$TARBALL"
13 DEPENDS="ncurses"
14 BUILD_DEPENDS="ncurses-dev automake autoconf"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i 's|lncurses|& -ltinfo|' *
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 }