blob: 5a5d3b8a48c6d7a4f39510fe4e6e51964af3e47c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Matthew Gamble
pkgname=python-idiotscript
pkgver=1.1.1
pkgrel=6
pkgdesc="An easier, less powerful alternative to regular expressions"
arch=("any")
url="https://github.com/djmattyg007/IdiotScript"
license=("Unlicense")
depends=("python")
makedepends=("python-setuptools")
source=("https://github.com/djmattyg007/IdiotScript/archive/${pkgver}.zip")
sha256sums=("38016ff7734ba9f0f82bdb34076995ac96960f33ec98608907ad18ae0c2b08c2")
package() {
cd "IdiotScript-${pkgver}"
PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --optimize=1
install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-idiotscript/LICENSE.txt"
}
|