diff options
Diffstat (limited to 'abs')
-rw-r--r-- | abs/core/procps-ng/PKGBUILD | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/abs/core/procps-ng/PKGBUILD b/abs/core/procps-ng/PKGBUILD index 3942603..f30e5dc 100644 --- a/abs/core/procps-ng/PKGBUILD +++ b/abs/core/procps-ng/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 201333 2013-12-09 03:38:18Z bisson $ +# $Id$ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Eric BĂ©langer <eric@archlinux.org> pkgname=procps-ng -pkgver=3.3.9 +pkgver=3.3.10 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') +depends=('ncurses' 'systemd') source=("http://downloads.sourceforge.net/project/${pkgname}/Production/${pkgname}-${pkgver}.tar.xz") -sha1sums=('088c77631745fc75ee41fc29c254a4069be4869a') +sha1sums=('484db198d6a18a42b4011d5ecb2cb784a81b0e4f') groups=('base') @@ -21,6 +21,11 @@ replaces=('procps' 'sysvinit-tools') install=install +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed 's:<ncursesw/:<:g' -i watch.c +} + build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure \ @@ -30,6 +35,8 @@ build() { --libdir=/usr/lib \ --bindir=/usr/bin \ --sbindir=/usr/bin \ + --enable-watch8bit \ + --with-systemd \ make } |