summaryrefslogtreecommitdiffstats
path: root/testing/py-pylast/APKBUILD
blob: 22b5efadb6ccd9d0403e969e535feb4561f20036 (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: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer:
pkgname=py-pylast
pkgver=1.0.0
pkgrel=0
pkgdesc="A Python interface to the last.fm API"
url="https://github.com/pylast/pylast"
arch="noarch"
license="Apache"
depends="python"
depends_dev=""
makedepends="python-dev py-setuptools"
install=""
subpackages=""
source="https://pypi.python.org/packages/source/p/pylast/pylast-$pkgver.tar.gz"

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

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

md5sums="a8404fee22b55352c9da25d6fa55c38c  pylast-1.0.0.tar.gz"
sha256sums="948bc9efb2e2785db8c303cc6559358b943538cc45f902838db770b84843d605  pylast-1.0.0.tar.gz"
sha512sums="1d6183596ff994f37722be493e22c65a2c441f5890b539fd9e19d515a5a38afc7017524600903879a8c76b938a52dec6ef4753c0e01dd59bae4e1596962755a0  pylast-1.0.0.tar.gz"