blob: 11dc84859c6981a43b8314f6fc57a18e25f6fb27 (
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: python-setuptools mysql
5
6 name=mysql-python
7 version=1.2.5
8 release=2
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 chmod 0644 $PKG/usr/lib/python2.7/site-packages/*.egg-info/*
15 }
|