You are not logged in.
Pages: 1
I have made this PKGBUILD for I686 and thought I'd share it:
Sysstat provides sar amoungst other things for logging of system usage over time.
# Contributor: Benedict White <benedictmpwhite@gmail.com>
pkgname=sysstat
pkgver=8.0.4
pkgrel=1
pkgdesc="Sysstat is a suite of system statistics monitoring tools"
arch=('i686')
url=""
license=('GPL')
groups=()
depends=()
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
source=(http://perso.orange.fr/sebastien.godard/$pkgname-$pkgver.tar.gz)
noextract=()
md5sums=('674d32a24478dba45a23ddf2b2988c57')
build() {
cd "$startdir/src/$pkgname-$pkgver"
./configure --prefix=/usr --sysconfdir=/etc
make || return 1
make DESTDIR="$startdir/pkg" install
}
# vim:set ts=2 sw=2 et:
Kind regards
Benedict White
Offline
I have now tested that it builds on 64bit so here is an update:
# Contributor: Benedict White <benedictmpwhite@gmail.com>
pkgname=sysstat
pkgver=8.0.4
pkgrel=1
pkgdesc="Sysstat is a suite of system statistics monitoring tools"
arch=('i686' 'x86_64')
url="http://pagesperso-orange.fr/sebastien.godard/"
license=('GPL')
groups=()
depends=()
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
source=(http://perso.orange.fr/sebastien.godard/$pkgname-$pkgver.tar.gz)
noextract=()
md5sums=('674d32a24478dba45a23ddf2b2988c57')
build() {
cd "$startdir/src/$pkgname-$pkgver"
./configure --prefix=/usr --sysconfdir=/etc
make || return 1
make DESTDIR="$startdir/pkg" install
}
# vim:set ts=2 sw=2 et:
Kind regards
Benedict White
Offline
http://aur.archlinux.org/packages.php?d … =1&ID=5275
I flagged it out of date.
1000
Offline
byte, many thanks, I had not realised someone else had done it!
Kind regards
Benedict White
Offline
Pages: 1