blob: e3e5afae8f91a20140c4f11c87ae76ec200e07f1 (
plain)
1 # Description: MySQL interface for Python
2 # URL: https://github.com/PyMySQL/mysqlclient-python
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: python-setuptools mysql
5
6 name=python-mysql
7 version=1.4.1
8 release=1
9 source=(https://github.com/PyMySQL/mysqlclient-python/archive/v1.4.1/$name-$version.tar.gz)
10
11 build () {
12 cd mysqlclient-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 }
|