47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
# Template file for 'procps-ng'
|
|
pkgname=procps-ng
|
|
version=3.3.17
|
|
revision=1
|
|
wrksrc="procps-${version}"
|
|
build_style=gnu-configure
|
|
configure_args="--exec-prefix=/ --bindir=/usr/bin --sbindir=/usr/bin
|
|
--libdir=/usr/lib --disable-kill --enable-watch8bit
|
|
--disable-modern-top --without-systemd"
|
|
hostmakedepends="automake gettext-devel libtool pkg-config"
|
|
makedepends="ncurses-devel"
|
|
checkdepends="dejagnu"
|
|
short_desc="Utilities for monitoring your system and its processes"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="GPL-2.0-or-later, LGPL-2.1-or-later"
|
|
homepage="https://gitlab.com/procps-ng/procps"
|
|
changelog="https://gitlab.com/procps-ng/procps/raw/master/NEWS"
|
|
distfiles="${SOURCEFORGE_SITE}/${pkgname}/Production/${pkgname}-${version}.tar.xz"
|
|
checksum=4518b3e7aafd34ec07d0063d250fd474999b20b200218c3ae56f5d2113f141b4
|
|
|
|
conf_files="/etc/sysctl.conf"
|
|
|
|
post_extract() {
|
|
sed -i 's,ncursesw/ncurses.h,ncurses.h,g' watch.c
|
|
sed -i '1i#include <utmp.h>' w.c
|
|
sed -i '1i#include <langinfo.h>' proc/escape.c
|
|
}
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
vconf ${FILESDIR}/sysctl.conf
|
|
}
|
|
|
|
procps-ng-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/share/man/man3
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|