summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b23a21d478af7d5ee61812f784c4808ac5e9f9ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Matthew Gamble <git@matthewgamble.net>

pkgname=python-wire
pkgver=1.0.0
pkgrel=5
pkgdesc="A convenience wrapper around the built-in SQLite3 module in python"
arch=("any")
url="https://github.com/djmattyg007/python-wire"
license=("GPL3")
depends=("python")
makedepends=("python-setuptools")
source=("https://github.com/djmattyg007/python-wire/archive/${pkgver}.zip")
sha256sums=("0aaf5e3c280756fd723bf1b0fd68430da6f228d4b21a7eb9f9b18c33660bf978")

package() {
    cd "python-wire-${pkgver}"
    python setup.py install --root="${pkgdir}" --optimize=1
    install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/python-wire/LICENSE"
}