diff options
author | Britney Fransen <brfransen@gmail.com> | 2017-07-19 03:23:17 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2017-07-19 03:23:17 (GMT) |
commit | a7fe8e90766b533c95203366cb40a9e351069200 (patch) | |
tree | 09c628b5f5ef38f1f23858213846c630ed68c22a | |
parent | a583e5577e985e448e6266c31d5b88a31e1be4e3 (diff) | |
download | linhes_pkgbuild-a7fe8e90766b533c95203366cb40a9e351069200.zip linhes_pkgbuild-a7fe8e90766b533c95203366cb40a9e351069200.tar.gz linhes_pkgbuild-a7fe8e90766b533c95203366cb40a9e351069200.tar.bz2 |
python2-flask-cors: initial inclusion. dep of flexget
-rw-r--r-- | abs/core/python_modules/python2-flask-cors/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/abs/core/python_modules/python2-flask-cors/PKGBUILD b/abs/core/python_modules/python2-flask-cors/PKGBUILD new file mode 100644 index 0000000..08ea418 --- /dev/null +++ b/abs/core/python_modules/python2-flask-cors/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Philipp Schmitt <philipp@schmitt.co> +# GitHub: https://github.com/pschmitt/aur-python2-flask-cors +pkgname=python2-flask-cors +_pkgname=Flask-Cors +pkgver=2.1.2 +pkgrel=1 +pkgdesc="A Flask extension adding a decorator for CORS support" +arch=('any') +url='https://pypi.python.org/pypi/Flask-Cors' +license=('') +depends=('python2') +options=(!emptydirs) +source=("https://pypi.python.org/packages/source/F/$_pkgname/$_pkgname-$pkgver.tar.gz") +md5sums=('50274b36f1c885669234590009583c43') + +package() { + cd "$srcdir/$_pkgname-$pkgver" + python2 setup.py install --root="$pkgdir/" --optimize=1 +} + +# vim:set ts=2 sw=2 et: |