wok-next view slurm/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 306a4f258013
children
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 WEB_SITE="https://github.com/mattthias/slurm/wiki"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/mattthias/slurm/archive/upstream/$VERSION.tar.gz"
14 BUILD_DEPENDS="ncurses-dev automake autoconf"
16 compile_rules() {
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$install install
24 }
26 genpkg_rules() {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 DEPENDS="ncurses"
30 }