blob: 08fc60752c4a89dabf311acc32b18548f582e654 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Maintainer: dx <dx at dxzone.com.ar>
# Contributor: Boohbah <boohbah at gmail.com>
# Contributor: Eric Belanger <eric at archlinux.org>
# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
_pkgname=htop
pkgname=$_pkgname-blueweb
pkgver=1.0.3
pkgrel=1
pkgdesc="Interactive process viewer with blueweb theme patch"
arch=('i686' 'x86_64')
url="http://htop.sourceforge.net/"
license=('GPL')
depends=('ncurses')
makedepends=('python2')
optdepends=('lsof: show files opened by a process'
'strace: attach to a running process')
provides=('htop')
conflicts=('htop')
options=('!emptydirs')
source=("http://hisham.hm/$_pkgname/releases/$pkgver/$_pkgname-$pkgver.tar.gz"
'htop-blueweb-theme-1.0.3.patch')
md5sums=('e768b9b55c033d9c1dffda72db3a6ac7'
'eddab24184b8681acaac70e2c35eb318')
prepare() {
cd "$_pkgname-$pkgver"
sed -i 's|ncursesw/curses.h|curses.h|' RichString.[ch] configure
sed -i 's|python|python2|' scripts/MakeHeader.py
}
build() {
cd "$_pkgname-$pkgver"
# Blueweb patch
patch -N -i ../htop-blueweb-theme-1.0.3.patch
./configure \
--prefix=/usr \
--enable-unicode \
--enable-openvz \
--enable-vserver \
--enable-cgroup
make
}
package() {
make -C "$_pkgname-$pkgver" DESTDIR="$pkgdir" install
}
|