20 lines
564 B
Plaintext
20 lines
564 B
Plaintext
# Description: hooks for performing structured queries in python3-agate
|
|
# URL: https://github.com/wireservice/agate-sql/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: python3-agate python3-sqlalchemy
|
|
|
|
name=python3-agate-sql
|
|
version=0.5.8
|
|
release=1
|
|
source=(https://github.com/wireservice/${name##python3-}/archive/refs/tags/$version.tar.gz)
|
|
renames=($name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${name##python3-}-$version
|
|
/usr/bin/python3 setup.py build
|
|
|
|
/usr/bin/python3 setup.py install --skip-build \
|
|
--optimize=1 --prefix=/usr --root=$PKG
|
|
|
|
}
|