void-packages/srcpkgs/atop/template
Leah Neukirchen 11f9a43bdc atop: disable setuid.
It still has most functionality, and for process accounting you can
start it as root or via sudo.
2017-01-25 14:58:46 +01:00

25 lines
731 B
Bash

# Template file for 'atop'
pkgname=atop
version=2.1
revision=5
build_style=gnu-makefile
makedepends="ncurses-devel zlib-devel"
short_desc="A system and process level monitor"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="GPL-2"
homepage="http://www.atoptool.nl/"
distfiles="http://www.atoptool.nl/download/atop-${version}-1.tar.gz"
checksum=39a2d4febc338dd4147904b1496d1aa9513da0d22ad0602b66023452bdc7989f
pre_install() {
sed -i '/chown/d' Makefile
sed -i 's/04711/0755/' Makefile
sed -i 's,sbin,bin,g' Makefile
}
do_install() {
make PREFIX=/usr SBINDIR=/usr/bin DESTDIR=${DESTDIR} install
vsv atop
# Remove unused stuff.
rm -f ${DESTDIR}/usr/bin/atop{,sar}-${version}
rm -rf ${DESTDIR}/etc/init.d ${DESTDIR}/var
}