# $Id: PKGBUILD 201333 2013-12-09 03:38:18Z bisson $ # Maintainer: Gaetan Bisson # Contributor: Eric BĂ©langer pkgname=procps-ng pkgver=3.3.9 pkgrel=1 pkgdesc='Utilities for monitoring your system and its processes' url='http://sourceforge.net/projects/procps-ng/' license=('GPL' 'LGPL') arch=('i686' 'x86_64') depends=('ncurses') source=("http://downloads.sourceforge.net/project/${pkgname}/Production/${pkgname}-${pkgver}.tar.xz") sha1sums=('088c77631745fc75ee41fc29c254a4069be4869a') groups=('base') conflicts=('procps' 'sysvinit-tools') provides=('procps' 'sysvinit-tools') replaces=('procps' 'sysvinit-tools') install=install build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure \ --prefix=/usr \ --exec-prefix=/ \ --sysconfdir=/etc \ --libdir=/usr/lib \ --bindir=/usr/bin \ --sbindir=/usr/bin \ make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install # provided by util-linux rm "${pkgdir}/usr/bin/kill" rm "${pkgdir}/usr/share/man/man1/kill.1" }