blob: f9e5de7a0a2d0b63f147693d5de70cfb160a8474 (
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.4
8 release=1
9 source=(https://github.com/PyMySQL/mysqlclient-python/archive/v$version/$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 }
|