2006-09-07 16:03:04 +00:00
|
|
|
# Description: A language for writing python extension modules
|
|
|
|
# URL: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
|
2008-02-05 13:33:43 +11:00
|
|
|
# Maintainer: Lucas Hazel, lucas at die dot net dot au
|
|
|
|
# Packager: Matt Housh, jaeger at crux dot nu
|
2006-09-07 16:03:04 +00:00
|
|
|
# Depends on: python
|
|
|
|
|
|
|
|
name=pyrex
|
2008-06-18 21:55:17 +10:00
|
|
|
version=0.9.8.4
|
2006-09-07 16:03:04 +00:00
|
|
|
release=1
|
2008-02-08 22:43:31 +11:00
|
|
|
source=(http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/Pyrex-$version.tar.gz)
|
2006-09-07 16:03:04 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd Pyrex-$version
|
|
|
|
python setup.py install --root=$PKG
|
2008-05-17 16:52:08 +10:00
|
|
|
rm -rf $PKG/usr/lib/python2.5/site-packages/{*.egg-info,Pyrex/Mac}
|
2006-09-07 16:03:04 +00:00
|
|
|
chown -R root:root $PKG
|
|
|
|
}
|