blob: b0ed10b28b3b5b5426987f0e664d5a8cc1285763 (
plain)
1 # Description: MySQL interface for Python
2 # URL: http://sourceforge.net/projects/mysql-python/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: setuptools mysql
5
6 name=mysql-python
7 version=1.2.5
8 release=1
9 source=(https://pypi.python.org/packages/source/M/MySQL-python/MySQL-python-$version.zip)
10
11 build () {
12 cd MySQL-python-$version
13 /usr/bin/python setup.py install --root=$PKG --prefix=/usr
14 }
|