desktop/xrestop/PKGBUILD

27 lines
562 B
Bash
Raw Normal View History

2011-01-15 03:55:26 +08:00
pkgname=xrestop
pkgver=0.4
2017-01-16 07:12:54 +08:00
pkgrel=3
2011-01-15 03:55:26 +08:00
pkgdesc="Uses the X-Resource extension to provide 'top' like statistics"
2017-01-16 07:12:54 +08:00
arch=('x86_64')
2011-01-15 03:55:26 +08:00
url="http://freedesktop.org/wiki/Software/xrestop"
license=('GPL')
depends=('libxres' 'ncurses')
categories=('utils')
2017-01-16 07:12:54 +08:00
source=(https://sources.archlinux.org/other/community/xrestop/xrestop-$pkgver.tar.gz)
2011-01-15 03:55:26 +08:00
md5sums=('d8a54596cbaf037e62b80c4585a3ca9b')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr --mandir=/usr/share/man
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}