PKGBUILDs/community/pystatgrab/PKGBUILD

23 lines
607 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $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"
}