mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
807 B
Bash
21 lines
807 B
Bash
# $Id: PKGBUILD 31081 2009-03-24 09:33:05Z douglas $
|
|
# Contributor: Arjan timmerman <arjan@soulfly.nl>
|
|
# Contributor: Link Dupont <link@subpop.net>
|
|
# Maintainer: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
|
|
pkgname=pyrex
|
|
pkgver=0.9.8.5
|
|
pkgrel=2
|
|
pkgdesc="Language for writing Python extension modules"
|
|
arch=("i686" "x86_64")
|
|
url="http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/"
|
|
license=('custom')
|
|
depends=('python>=2.5')
|
|
source=(http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/Pyrex-${pkgver}.tar.gz LICENSE)
|
|
md5sums=('3b3d8397c2c9a58fc59a90e2b49c651a' 'f40400d28306b23414017a1da7f2e30d')
|
|
|
|
build() {
|
|
cd ${startdir}/src/Pyrex-${pkgver}
|
|
python setup.py install --root=${startdir}/pkg --prefix=/usr
|
|
install -D -m644 ../LICENSE ${startdir}/pkg/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|