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 /community/xrestop |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/xrestop')
-rw-r--r-- | community/xrestop/ChangeLog | 4 | ||||
-rw-r--r-- | community/xrestop/PKGBUILD | 27 |
2 files changed, 31 insertions, 0 deletions
diff --git a/community/xrestop/ChangeLog b/community/xrestop/ChangeLog new file mode 100644 index 000000000..d60dd0088 --- /dev/null +++ b/community/xrestop/ChangeLog @@ -0,0 +1,4 @@ + +2007-06-28 tardo <tardo@nagi-fanboi.net> +* Built for x86_64 + diff --git a/community/xrestop/PKGBUILD b/community/xrestop/PKGBUILD new file mode 100644 index 000000000..4aa47dbd5 --- /dev/null +++ b/community/xrestop/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 23510 2010-08-11 21:54:23Z lcarlier $ +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=xrestop +pkgver=0.4 +pkgrel=3 +pkgdesc="Uses the X-Resource extension to provide 'top' like statistics" +arch=('i686' 'x86_64') +url="http://freedesktop.org/wiki/Software/xrestop" +license=('GPL') +depends=('libxres' 'ncurses') +source=(http://projects.o-hand.com/sources/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('d8a54596cbaf037e62b80c4585a3ca9b') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr --mandir=/usr/share/man + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install +} + |