mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-flask-autorouter
|
|
_pkgname=flask-autorouter
|
|
pkgver=0.2.0
|
|
pkgrel=0
|
|
pkgdesc="Flask generating URL routing"
|
|
url="https://pypi.python.org/pypi/flask-autorouter"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python2 py-flask"
|
|
depends_dev=""
|
|
makedepends="python2-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python2 setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="1b79f24d97b135b1724a6f73ecd0705c flask-autorouter-0.2.0.tar.gz"
|
|
sha256sums="a377a1b719d766b6667ea59296d758acf18eb4b67a3fd35dab0492611e9c0128 flask-autorouter-0.2.0.tar.gz"
|
|
sha512sums="e0e9ca615cd8302e809cb2cbabf0ac5f3c2e3f4528c5ce2aa8aa6392e91471e0fe6ecadec39b27b4c3313c1ee50a8d6ce06307af4992bd1405a3603f2fb2087b flask-autorouter-0.2.0.tar.gz"
|