diff options
-rw-r--r-- | testing/py-flask-autorouter/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py-flask-autorouter/APKBUILD b/testing/py-flask-autorouter/APKBUILD new file mode 100644 index 0000000000..a60dfe451a --- /dev/null +++ b/testing/py-flask-autorouter/APKBUILD @@ -0,0 +1,41 @@ +# 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="python py-flask" +depends_dev="" +makedepends="python-dev py-setuptools" +install="" +subpackages="" +source="http://pypi.python.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" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python 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" |