diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/libstatgrab/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/libstatgrab/PKGBUILD')
-rw-r--r-- | community/libstatgrab/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/libstatgrab/PKGBUILD b/community/libstatgrab/PKGBUILD new file mode 100644 index 000000000..30b014b6b --- /dev/null +++ b/community/libstatgrab/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 83514 2013-02-02 11:47:44Z 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=3 +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 +} |