diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /core/psmisc |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'core/psmisc')
-rw-r--r-- | core/psmisc/ChangeLog | 40 | ||||
-rw-r--r-- | core/psmisc/PKGBUILD | 27 |
2 files changed, 67 insertions, 0 deletions
diff --git a/core/psmisc/ChangeLog b/core/psmisc/ChangeLog new file mode 100644 index 000000000..d9fa6dfa5 --- /dev/null +++ b/core/psmisc/ChangeLog @@ -0,0 +1,40 @@ +2010-09-06 Eric Belanger <eric@archlinux.org> + + * psmisc 22.13-1 + * Upstream update + +2010-08-03 Eric Belanger <eric@archlinux.org> + + * psmisc 22.12-1 + * Upstream update + * Updated psmisc.checkregs.fix.patch + +2010-04-30 Eric Belanger <eric@archlinux.org> + + * psmisc 22.11-1 + * Upstream update + +2010-01-12 Eric Belanger <eric@archlinux.org> + + * psmisc 22.10-1 + * Upstream update + +2009-07-31 Eric Belanger <eric@archlinux.org> + + * psmisc 22.8-1 + * Upstream update + +2009-05-14 Eric Belanger <eric@archlinux.org> + + * psmisc 22.7-1 + * Upstream update + +2009-04-30 Eric Belanger <eric@archlinux.org> + + * psmisc 22.6-2.1 + * Added peekfd in x86_64 package (close FS#14514) + +2008-10-19 Eric Belanger <eric@archlinux.org> + + * Updated url + * Added ChangeLog diff --git a/core/psmisc/PKGBUILD b/core/psmisc/PKGBUILD new file mode 100644 index 000000000..98e542a3a --- /dev/null +++ b/core/psmisc/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 90063 2010-09-07 03:39:08Z eric $ +# Maintainer: Eric Belanger <eric@archlinux.org> + +pkgname=psmisc +pkgver=22.13 +pkgrel=1 +pkgdesc="Miscellaneous procfs tools" +arch=('i686' 'x86_64') +url="http://psmisc.sourceforge.net/index.html" +license=('GPL') +groups=('base') +depends=('glibc' 'ncurses') +changelog=ChangeLog +source=(http://downloads.sourceforge.net/psmisc/${pkgname}-${pkgver}.tar.gz) +md5sums=('e2c339e6b65b730042084023784a729e') +sha1sums=('5d53c8bb5a279176be3515c07d833cdf116dd516') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |