blob: 9e212a70ac0f6fdb1ac52288d7237c5157843912 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Moniteur dearge CPU pour Xfce
# URL: http://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin
# Maintainer: NuTyX core team
# Packager: fred.galusik at gmail dot com
# Depends on: xfce4-panel
name=xfce4-cpugraph-plugin
version=0.4.0
release=4
source=(http://goodies.xfce.org/releases/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--libexecdir=/usr/lib/xfce4 \
--disable-static
make
make DESTDIR=$PKG install
}
|