PKGBUILDs/community/xrestop/PKGBUILD

23 lines
597 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=xrestop
pkgver=0.4
pkgrel=1
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 $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install || return 1
}