summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: de9619e1b81aef7174eb0f3626de5553a786f4c0 (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-unstdlib
pkgver=1.7.2
pkgrel=2
pkgdesc="Unstandard Python library of useful and highly-reusable functions."
arch=("any")
url="https://github.com/shazow/unstdlib.py"
license=("MIT")
depends=("python")
makedepends=("python-setuptools")
source=("https://files.pythonhosted.org/packages/ad/bd/420390e57167f667caa206576f715964b11ef20894d4b69455e425fe21c6/unstdlib-1.7.2.tar.gz")
sha256sums=("ef702a49bea7cefde837b7419f02d0b6274823cc51801ef5b9ba4ccb60227eb0")

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