mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
597 B
Bash
22 lines
597 B
Bash
# $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
|
|
|
|
}
|
|
|