aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-flask-sqlalchemy/APKBUILD
blob: 92e5ff12cbaa3a52559718555965630f60124ff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=py-flask-sqlalchemy
pkgver=2.1
pkgrel=0
pkgdesc="SQLAlchemy integration for Flask"
url="http://flask.pocoo.org/"
arch="noarch"
license="MIT"
depends="python2 py-flask py-sqlalchemy"
depends_dev=""
makedepends="python2-dev py-setuptools"
install=""
subpackages=""
source="https://files.pythonhosted.org/packages/source/F/Flask-SQLAlchemy/Flask-SQLAlchemy-$pkgver.tar.gz"

_builddir="$srcdir"/Flask-SQLAlchemy-$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"
	python2 setup.py build || return 1
}

package() {
	cd "$_builddir"
	python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1
}

md5sums="dc15fe08b07b434d3d2c4063b4674b72  Flask-SQLAlchemy-2.1.tar.gz"
sha256sums="c5244de44cc85d2267115624d83faef3f9e8f088756788694f305a5d5ad137c5  Flask-SQLAlchemy-2.1.tar.gz"
sha512sums="023f3dd011a57768e921928dd3df791a54c64bb8a0cc1bb545dbb8e16dda263b730da74a0d400e5a057819830dd4cd014a642098a081c956a7ea8a2d37ec112a  Flask-SQLAlchemy-2.1.tar.gz"