mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
607 B
Bash
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"
|
|
}
|