diff options
Diffstat (limited to 'testing/procps-ng/PKGBUILD')
-rw-r--r-- | testing/procps-ng/PKGBUILD | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/testing/procps-ng/PKGBUILD b/testing/procps-ng/PKGBUILD deleted file mode 100644 index cab5fac96..000000000 --- a/testing/procps-ng/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 166733 2012-09-17 08:10:26Z bisson $ -# Maintainer: Gaetan Bisson <bisson@archlinux.org> -# Contributor: Eric BĂ©langer <eric@archlinux.org> - -pkgname=procps-ng -pkgver=3.3.3 -pkgrel=6 -pkgdesc='Utilities for monitoring your system and its processes' -arch=('i686' 'x86_64') -url="http://gitorious.org/procps" -license=('GPL' 'LGPL') -groups=('base') -depends=('ncurses') -conflicts=('procps') -provides=('procps') -replaces=('procps') -backup=('etc/sysctl.conf') -options=('!libtool') -source=(procps-ng-${pkgver}.tar.gz::http://gitorious.org/procps/procps/archive-tarball/v${pkgver} - sysctl.conf) -sha1sums=('e78a098f1a3c06722155800cc5cfa0c865af03c0' - '97ff07bab9aa5daa8d54a1346f73ba74f8e12a53') - -build() { - cd "${srcdir}/procps-procps" - echo ${pkgver} > .tarball-version - ./autogen.sh - ./configure --exec-prefix=/ --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib - make -} - -package() { - cd "${srcdir}/procps-procps" - make DESTDIR="${pkgdir}" install - install -D -m644 ../sysctl.conf "${pkgdir}/etc/sysctl.conf" - - # provided by util-linux - rm "${pkgdir}/bin/kill" - rm "${pkgdir}/usr/share/man/man1/kill.1" -} |