mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
testing/py-beatport: new aport
A python wrapper around the Beatport.com API https://pypi.python.org/pypi/beatport
This commit is contained in:
parent
bd78e95f77
commit
27bf5ae3a0
41
testing/py-beatport/APKBUILD
Normal file
41
testing/py-beatport/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
||||
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
pkgname=py-beatport
|
||||
_pkgname=beatport
|
||||
pkgver=0.0.1
|
||||
pkgrel=0
|
||||
pkgdesc="A python wrapper around the Beatport.com API"
|
||||
url="https://pypi.python.org/pypi/beatport"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
depends="python"
|
||||
depends_dev=""
|
||||
makedepends="python-dev py-setuptools py-requests"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/$_pkgname-$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="2d4cb71361eadd8301082ca524578cdb beatport-0.0.1.tar.gz"
|
||||
sha256sums="8dc8093b081710568edacdb5d2d3ba8f7da062d61793fe3f0e25679f6fcd8285 beatport-0.0.1.tar.gz"
|
||||
sha512sums="f84689b6f420dc35c25bebc883869bca847f4088b6e65463575cbe95d72dc86b468c4c3294e47a671abc5288b9f9a9555c6812bad31ab4793735918bbd4a294f beatport-0.0.1.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user