PKGBUILDs/community/pystatgrab/PKGBUILD
2009-10-09 21:15:33 -05:00

22 lines
607 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Hugo Ideler <hugoideler@dse.nl>
pkgname=pystatgrab
pkgver=0.5
pkgrel=2
pkgdesc="Python bindings for libstatgrab."
arch=('i686' 'x86_64')
url="http://www.i-scream.org/pystatgrab"
license=('GPL')
depends=('python' 'libstatgrab')
source=(ftp://ftp.uk.i-scream.org/pub/i-scream/pystatgrab/$pkgname-$pkgver.tar.gz)
md5sums=('b7a3451ba682ebf167fcb43f1769a121')
build() {
cd "${srcdir}/$pkgname-$pkgver"
python setup.py build
python setup.py install --prefix="${pkgdir}/usr"
}