18 lines
468 B
Plaintext
18 lines
468 B
Plaintext
# Description: Python extension module to speed up Python code.
|
|
# URL: http://psyco.sourceforge.net
|
|
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
|
# Maintainer: Lucas Hazel, lucas at die dot net dot au
|
|
#
|
|
# Depends on: python
|
|
|
|
name=psyco
|
|
version=1.5.1
|
|
release=2
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version-src.tar.gz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
python setup.py install --root=$PKG
|
|
chown root:root $PKG
|
|
}
|