blob: 376de6c0b83e61a1798a544241a0700b55bf7b74 (
plain)
1 # Description: A collection of performance monitoring tools
2 # URL: http://perso.orange.fr/sebastien.godard/
3 # Maintainer: Rene Lengwinat, rugek at dirtyhack dot net
4 # Depends on:
5
6 name=sysstat
7 version=8.1.7
8 release=1
9 source=(http://perso.orange.fr/sebastien.godard/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr
14
15 make
16 make DESTDIR=$PKG install
17
18 rm -rf $PKG/etc/sysconfig
19 rm -rf $PKG/usr/{doc,share}
20 }
|