You are not logged in.
Pages: 1
pkgname=psyco
pkgver=1.2
pkgrel=1
pkgdesc="Psyco is a Python extension module which can massively speed up the execution of any Python code."
url="http://psyco.sourceforge.net"
license=""
depends=('python')
source=(http://umn.dl.sourceforge.net/sourceforge/psyco/$pkgname-$pkgver-src.tar.gz)
md5sums=()
build()
{
cd $startdir/src/$pkgname-$pkgver
python setup.py install --root=$startdir/pkg/usr
}
I love setup.py projects - my new best friend
Offline
hi,
I won't use it but thx for this one!
btw, could you change your PKGBUILD url path ) it's psyco not pysco *g*
byebye,
ArchLinux (x86_64) w/ kdemod
Offline
Offline
Ah I see. This psyco also speeds up writing pkgbuilds :-)
As Mith already mentioned url needs fix and also it would be nice to have a description
Psyco is a Python extension module which can massively speed up the execution of any Python code.
Offline
sorry for the dumb question - but what is setup.py? i searched my hd and found several of them, each belongs to each its own package. i also searched the forums and saw its something todo with wxpython? is that correct?
Offline
fixed my errors => sorry it was done real quick and i fat-fingered "psyco"...
sorry for the dumb question - but what is setup.py? i searched my hd and found several of them, each belongs to each its own package. i also searched the forums and saw its something todo with wxpython? is that correct?
No, setup.py is basically a python style Makefile. It is part of any standard python install (distutils module) and is very easy to use/setup. It works for non-python files as well (psyco is mostly C code).
Offline
by the way, this will be in my repo once i resync it... feel free to nab what you want (come on AUR!)
Offline
Pages: 1