diff options
author | caltlgin | 2020-12-03 09:28:29 +1300 |
---|---|---|
committer | caltlgin | 2020-12-03 09:28:29 +1300 |
commit | f37e47d4d52959484186c840d9b9b4ad6f62b5aa (patch) | |
tree | 229193813139529cb5563a6ee4f61848c1c7205a /PKGBUILD | |
parent | 00c3c698244fa32114da9cecad6003bdf481f7cb (diff) | |
download | aur-python-simplesqlite.tar.gz |
Python 3.9 rebuild
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 20 |
1 files changed, 13 insertions, 7 deletions
@@ -1,17 +1,23 @@ # Maintainer: Caltlgin Stsodaat <contact@fossdaily.xyz> # Contributor: Florian Wittmann -_pkgname=SimpleSQLite -pkgname=python-${_pkgname,,} +_pkgname='SimpleSQLite' +pkgname="python-${_pkgname,,}" pkgver=1.1.3 -pkgrel=1 +pkgrel=2 pkgdesc='Simplify SQLite database operations' arch=('any') url='https://github.com/thombashi/SimpleSQLite' +_url_pypi='https://pypi.org/project/SimpleSQLite' license=('MIT') -depends=('python-dataproperty' 'python-mbstrdecoder' 'python-pathvalidate' 'python-sqliteschema' 'python-tabledata' 'python-typepy') +depends=('python' + 'python-dataproperty' + 'python-mbstrdecoder' + 'python-pathvalidate' + 'python-sqliteschema' + 'python-tabledata' + 'python-typepy') makedepends=('python-setuptools') -provides=("${_pkgname,,}") source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz") sha256sums=('e4f3613b04bc304a2f41294367c628ed00f27ca5d8eceb3f1a9d674f4b483b95') @@ -23,8 +29,8 @@ build() { package() { cd "${_pkgname}-${pkgver}" python setup.py install --root="${pkgdir}" --optimize=1 --skip-build - install -Dm644 -t "${pkgdir}/usr/share/doc/${_pkgname,,}" 'README.rst' - install -Dm644 -t "${pkgdir}/usr/share/licenses/${_pkgname,,}" 'LICENSE' + install -Dvm644 'README.rst' -t "${pkgdir}/usr/share/doc/${pkgname}" + install -Dvm644 'LICENSE' -t "${pkgdir}/usr/share/licenses/${pkgname}" } # vim: ts=2 sw=2 et: |