diff options
Diffstat (limited to 'testing/py-openweather/APKBUILD')
-rw-r--r-- | testing/py-openweather/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py-openweather/APKBUILD b/testing/py-openweather/APKBUILD new file mode 100644 index 0000000000..10b7f1ae1c --- /dev/null +++ b/testing/py-openweather/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-openweather +_pkgname=openweather +pkgver=0.6 +pkgrel=0 +pkgdesc="Python API wrapper for OpenWeatherMap.org" +url="http://github.com/marians/openweather" +arch="noarch" +license="MIT" +depends="python py-daterangestr" +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="d0db03a46c1f9337aaf572f61e6e1569 openweather-0.6.tar.gz" +sha256sums="2a8e9da623bda913bc309a200678388641eb2da2108efccd63c9e3815ddfeef8 openweather-0.6.tar.gz" +sha512sums="1f157c04a6d5b0f2175119c9791d93693e2026e78365a448234082902efb5217ff8bce79555355906b40a3a0a0a5c3a1a581455c99795e35099608f69e2a9ef8 openweather-0.6.tar.gz" |