15 lines
447 B
Plaintext
15 lines
447 B
Plaintext
# Description: MySQL interface for Python
|
|
# URL: https://github.com/PyMySQL/mysqlclient-python
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: python3-setuptools mysql
|
|
|
|
name=python3-mysql
|
|
version=2.0.0
|
|
release=1
|
|
source=(https://github.com/PyMySQL/mysqlclient-python/archive/v$version/python-$version.tar.gz)
|
|
|
|
build () {
|
|
cd mysqlclient-python-$version
|
|
/usr/bin/python3 setup.py install --root=$PKG --prefix=/usr
|
|
}
|