void-packages/srcpkgs/procps-ng/template

69 lines
1.5 KiB
Plaintext
Raw Normal View History

2013-02-19 23:51:50 +01:00
# Template file for 'procps-ng'
pkgname=procps-ng
2013-03-28 05:33:18 +01:00
version=3.3.7
revision=1
2013-02-19 23:51:50 +01:00
short_desc="Utilities for monitoring your system and its processes"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2, LGPL-2.1"
homepage="http://gitorious.org/procps"
2013-03-28 05:33:18 +01:00
nofetch=yes
noextract=yes
2013-03-26 09:34:21 +01:00
hostmakedepends="libtool automake gettext-devel pkg-config"
makedepends="ncurses-devel"
2013-02-19 23:51:50 +01:00
2013-03-28 05:33:18 +01:00
do_fetch() {
git clone git://gitorious.org/procps/procps.git \
-b v${version} ${pkgname}-${version}
}
do_configure() {
2013-02-19 23:51:50 +01:00
echo ${version} > .tarball-version
./autogen.sh
2013-03-28 05:33:18 +01:00
./configure ${configure_args} --exec-prefix=/ \
2013-03-28 05:40:47 +01:00
--prefix=/usr --libdir=/usr/lib --disable-static \
ac_cv_func_malloc_0_nonnull=yes \
ac_cv_func_realloc_0_nonnull=yes \
ac_cv_func_strtod=yes ac_cv_func_mmap_fixed_mapped=yes
2013-02-19 23:51:50 +01:00
}
2013-03-28 05:33:18 +01:00
do_build() {
make ${makejobs}
}
do_install() {
make DESTDIR=${DESTDIR} install
2013-02-19 23:51:50 +01:00
vinstall ${FILESDIR}/sysctl.conf 644 etc
# provided by util-linux
2013-02-20 00:25:11 +01:00
rm ${DESTDIR}/bin/kill
rm ${DESTDIR}/usr/share/man/man1/kill.1
2013-02-19 23:51:50 +01:00
vmkdir usr/bin
vmkdir usr/sbin
mv ${DESTDIR}/bin/* ${DESTDIR}/usr/bin
mv ${DESTDIR}/sbin/* ${DESTDIR}/usr/sbin
2013-02-19 23:51:50 +01:00
# Create pidof symlink.
ln -sfr ${DESTDIR}/usr/bin/pgrep ${DESTDIR}/usr/bin/pidof
# Remove devel and docs.
rm -rf ${DESTDIR}/usr/share/doc \
${DESTDIR}/usr/include ${DESTDIR}/usr/lib/pkgconfig
}
procps-ng_package() {
conf_files="/etc/sysctl.conf"
replaces="procps>=0"
provides="procps-${version}"
conflicts="coreutils<8.21_3"
pkg_install() {
vmove etc
vmove usr
}
}