slurm: fix for musl.
This commit is contained in:
parent
d129aa69b2
commit
be0abf3f2a
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'slurm'
|
||||
pkgname=slurm
|
||||
version=0.4.2
|
||||
revision=1
|
||||
revision=2
|
||||
wrksrc="${pkgname}-upstream-${version}"
|
||||
makedepends="ncurses-devel"
|
||||
short_desc="Yet another network load monitor"
|
||||
|
@ -11,11 +11,16 @@ homepage="https://github.com/mattthias/slurm"
|
|||
distfiles="https://github.com/mattthias/slurm/archive/upstream/${version}.tar.gz"
|
||||
checksum=8a28e11650928d87a907f9b154f6efd1ad5854cdc56a528da2e02e756e0aa58e
|
||||
|
||||
post_extract() {
|
||||
sed -i '/<sys\/sysctl.h>/d' os.h
|
||||
sed -i 's,<net/ppp_defs.h>,<linux/ppp_defs.h>,g' os.h
|
||||
sed -i 's,<net/if_ppp.h>,<linux/if_ppp.h>,g' os.h
|
||||
|
||||
}
|
||||
do_build() {
|
||||
${CC} ${CFLAGS} -o slurm slurm.c ${LDFLAGS} \
|
||||
-D_HAVE_NCURSES -D_HAVE_NCURSES_COLOR -D__Debian__ -lncurses
|
||||
}
|
||||
|
||||
do_install() {
|
||||
vbin slurm
|
||||
vman slurm.1
|
||||
|
|
Loading…
Reference in New Issue