mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 11:52:25 +01:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-wbdata
|
|
_pkgname=wbdata
|
|
pkgver=0.2.3
|
|
pkgrel=0
|
|
pkgdesc="A library to access World Bank data"
|
|
url="https://github.com/oliversherouse/wbdata"
|
|
arch="noarch"
|
|
license="GPL2+"
|
|
depends="python"
|
|
depends_dev=""
|
|
makedepends="python-dev py-setuptools"
|
|
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="d4f94fef824407e17d42dd107c376a8b wbdata-0.2.3.tar.gz"
|
|
sha256sums="6a50697a600865fd529651747d74b8a6a3e5efa1ad320c9dcbaf87f9caea171d wbdata-0.2.3.tar.gz"
|
|
sha512sums="8bc18444d11d0e150c9c7f51daa297950baa716e5f19d4d093e8ec93a1cffa3eea80f76aef21ccf013ab99e1d3a9984758d3801647bceb750638d118e45309e4 wbdata-0.2.3.tar.gz"
|