diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/libstatgrab |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/libstatgrab')
-rw-r--r-- | community/libstatgrab/PKGBUILD | 30 | ||||
-rw-r--r-- | community/libstatgrab/libstatgrab.changelog | 11 |
2 files changed, 41 insertions, 0 deletions
diff --git a/community/libstatgrab/PKGBUILD b/community/libstatgrab/PKGBUILD new file mode 100644 index 000000000..08f42c7d5 --- /dev/null +++ b/community/libstatgrab/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 38529 2011-01-27 20:56:07Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Eric Belanger <eric@archlinux.org> +# Contributor: Hugo Ideler <hugoideler@dse.nl> + +pkgname=libstatgrab +pkgver=0.17 +pkgrel=1 +pkgdesc="A library that provides cross platform access to statistics about the system on which it's run" +arch=('i686' 'x86_64') +url="http://www.i-scream.org/libstatgrab" +license=('LGPL' 'GPL') +depends=('ncurses' 'perl') +options=('!libtool' '!makeflags') +changelog=$pkgname.changelog +source=(http://www.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/$pkgname/$pkgname-$pkgver.tar.gz) +sha256sums=('bbaa88c6bde8bd3cf2720b81a26528cc055a7e83e4ea3bdb1d0a3c4287cceb88') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + + make DESTDIR=${pkgdir} install +} diff --git a/community/libstatgrab/libstatgrab.changelog b/community/libstatgrab/libstatgrab.changelog new file mode 100644 index 000000000..ee8f7860f --- /dev/null +++ b/community/libstatgrab/libstatgrab.changelog @@ -0,0 +1,11 @@ +2011-01-27 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * libstatgrab 0.17-1 + +2010-07-21 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * rebuild for correct package naming + +2008-03-20 Eric Belanger <eric@archlinux.org> + + * libstatgrab 0.16-1 + * Upstream update + * Added ChangeLog |