diff options
-rw-r--r-- | testing/py3-flask-peewee/APKBUILD | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/testing/py3-flask-peewee/APKBUILD b/testing/py3-flask-peewee/APKBUILD index 97786ab7e4..789971454f 100644 --- a/testing/py3-flask-peewee/APKBUILD +++ b/testing/py3-flask-peewee/APKBUILD @@ -8,22 +8,18 @@ pkgdesc="Flask integration for peewee" url="http://pypi.python.org/pypi/flask-peewee" arch="noarch" license="MIT" -depends="python3 py3-flask py-peewee py3-werkzeug py3-jinja2 py3-wtforms py-wtf-peewee" -depends_dev="" -makedepends="python3-dev py3-setuptools" -install="" -subpackages="" +depends="py3-flask py3-jinja2 py3-peewee py3-werkzeug py3-wtf-peewee + py3-wtforms" +makedepends="py3-setuptools" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver build() { - cd "$builddir" python3 setup.py build } package() { - cd "$builddir" python3 setup.py install --prefix=/usr --root="$pkgdir" } |