diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-26 19:04:25 -0300 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-10-25 20:02:58 +0000 |
commit | f5fb7d309d7e6f0ea4534b095733a083631c4eab (patch) | |
tree | 74b27982ece4d42ef0143f785c7c29b60bb8b556 /community/py3-flask-assets | |
parent | db8043cafad721e4e3dc6a8139a34cb21074bc16 (diff) | |
download | aports-f5fb7d309d7e6f0ea4534b095733a083631c4eab.tar.bz2 aports-f5fb7d309d7e6f0ea4534b095733a083631c4eab.tar.xz |
community/py3-flask-assets: move from main
Closes !172
Diffstat (limited to 'community/py3-flask-assets')
-rw-r--r-- | community/py3-flask-assets/APKBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/py3-flask-assets/APKBUILD b/community/py3-flask-assets/APKBUILD new file mode 100644 index 0000000000..2e66a95f70 --- /dev/null +++ b/community/py3-flask-assets/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: +pkgname=py3-flask-assets +_pkgname=Flask-Assets +pkgver=0.12 +pkgrel=1 +pkgdesc="Flask asset management" +url="https://pypi.python.org/pypi/Flask-Assets" +arch="noarch" +license="BSD-2-Clause" +depends="py3-flask py3-webassets" +makedepends="py3-setuptools" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +builddir="$srcdir"/$_pkgname-$pkgver + +replaces="py-flask-assets" # Backwards compatibility +provides="py-flask-assets=$pkgver-r$pkgrel" # Backwards compatibility + +build() { + cd "$builddir" + python3 setup.py build +} + +package() { + cd "$builddir" + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="e7a88a3637a9dc0ad7c19d6e6843d28d1ee6bc676280981e9a5db55377610165823cfa29633029013cf64c43b49b5e642cd0972fae5d82d5cd9a0bdc0333126b Flask-Assets-0.12.tar.gz" |