73c2c112e0
Tidy up a bit
30 lines
810 B
Bash
30 lines
810 B
Bash
# Template file for 'atop'
|
|
pkgname=atop
|
|
version=2.5.0
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
make_install_target="sysvinstall"
|
|
makedepends="ncurses-devel zlib-devel"
|
|
short_desc="System and process level monitor"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://www.atoptool.nl/"
|
|
distfiles="https://www.atoptool.nl/download/atop-${version}.tar.gz"
|
|
checksum=4b911057ce50463b6e8b3016c5963d48535c0cddeebc6eda817e292b22f93f33
|
|
|
|
make_dirs="/var/log/atop 755 root root"
|
|
|
|
pre_install() {
|
|
vsed -e '/chown/d' \
|
|
-e 's/04711/0755/' \
|
|
-e 's,sbin,bin,g' \
|
|
-e '/$(DEFPATH)/d' -i Makefile
|
|
vsed -e 's,bin/sh,bin/bash,' -i atop.daily
|
|
}
|
|
|
|
post_install() {
|
|
vsv atop
|
|
# Remove unused stuff.
|
|
rm -f ${DESTDIR}/usr/bin/atop{,sar}-${version}
|
|
rm -rf ${DESTDIR}/etc/init.d ${DESTDIR}/var
|
|
}
|