mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
testing/py-flask-script: new aport
Flask scripting support https://pypi.python.org/pypi/Flask-Script
This commit is contained in:
parent
cafc0273de
commit
0769e576b4
1 changed files with 41 additions and 0 deletions
41
testing/py-flask-script/APKBUILD
Normal file
41
testing/py-flask-script/APKBUILD
Normal file
|
@ -0,0 +1,41 @@
|
|||
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
pkgname=py-flask-script
|
||||
_pkgname=Flask-Script
|
||||
pkgver=0.6.2
|
||||
pkgrel=0
|
||||
pkgdesc="Flask scripting support"
|
||||
url="https://pypi.python.org/pypi/Flask-Script"
|
||||
arch="noarch"
|
||||
license="BSD"
|
||||
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="09678a4279714ed5addfcc2620894d64 Flask-Script-0.6.2.tar.gz"
|
||||
sha256sums="17fc2ab89dd8ecce4c7683c16538771ffb685f74a6bca9c52354c7efb9d61dbc Flask-Script-0.6.2.tar.gz"
|
||||
sha512sums="d4a59b477281bbd2aa993b2b249285c132a43148011d69447986fa6aa5b724ce1ddd8e89ad6472b1dc1bbfbfa863dfd5f01c7a23681280ab5664499c83e26667 Flask-Script-0.6.2.tar.gz"
|
Loading…
Add table
Add a link
Reference in a new issue