mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
562 B
Bash
27 lines
562 B
Bash
|
|
pkgname=xrestop
|
|
pkgver=0.4
|
|
pkgrel=3
|
|
pkgdesc="Uses the X-Resource extension to provide 'top' like statistics"
|
|
arch=('x86_64')
|
|
url="http://freedesktop.org/wiki/Software/xrestop"
|
|
license=('GPL')
|
|
depends=('libxres' 'ncurses')
|
|
categories=('utils')
|
|
source=(https://sources.archlinux.org/other/community/xrestop/xrestop-$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
|
|
}
|
|
|