aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py-django-mptt/APKBUILD
blob: 7d6b2b15c43df316cea7de6595e10ec1f0a7b15f (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
41
42
43
44
45
46
47
48
49
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer:
pkgname=py-django-mptt
pkgver=0.9.0
pkgrel=0
pkgdesc="Utilities for implementing a modified pre-order traversal tree in django"
url="https://github.com/django-mptt/django-mptt"
arch="noarch"
license="Custom"
depends="py-django py-django-js-asset"
makedepends="python2-dev python3-dev py-setuptools"
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
source="$pkgname-$pkgver.tar.gz::https://github.com/django-mptt/django-mptt/archive/$pkgver.tar.gz"
options="!check" #no testsuite provided
builddir="$srcdir"/django-mptt-$pkgver

build() {
	cd "$builddir"
	python2 setup.py --quiet build
	python3 setup.py --quiet build
}

package() {
	cd "$builddir"
	mkdir -p "$pkgdir"/usr/bin
}

_py2() {
	depends="${depends//py-/py2-}"
	_py python2
}

_py3() {
	depends="${depends//py-/py3-}"
	_py python3
}

_py() {
	local python="$1"
	local pyver="${1:6:1}"
	pkgdesc="$pkgdesc (for $python)"
	depends="$depends $python"
	install_if="$pkgname=$pkgver-r$pkgrel $python"

	cd "$builddir"
	$python setup.py --quiet install --prefix=/usr --root="$subpkgdir"
}

sha512sums="7a5356b4c2a242f716b3b481d318b2a5741817fd40b79f54ec5a74fcc3cc0e4469c0a28601b3139cebc9a5ec4da0ef8f4f24476065fc8230fb8de94343852000  py-django-mptt-0.9.0.tar.gz"