16 lines
425 B
Plaintext
16 lines
425 B
Plaintext
# Description: MySQL interface for Python
|
|
# URL: https://github.com/PyMySQL/mysqlclient-python
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: mariadb python3-setuptools
|
|
|
|
name=python3-mysqlclient
|
|
version=2.2.1
|
|
release=1
|
|
source=(https://pypi.org/packages/source/m/mysqlclient/mysqlclient-$version.tar.gz)
|
|
|
|
build() {
|
|
cd mysqlclient-$version
|
|
/usr/bin/python3 setup.py install --root=$PKG
|
|
chmod -R go-w $PKG
|
|
}
|