diff options
Diffstat (limited to 'testing/py3-python-mystrom/APKBUILD')
-rw-r--r-- | testing/py3-python-mystrom/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/py3-python-mystrom/APKBUILD b/testing/py3-python-mystrom/APKBUILD new file mode 100644 index 0000000000..674a378ef4 --- /dev/null +++ b/testing/py3-python-mystrom/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py3-python-mystrom +_pkgname=python-mystrom +pkgver=0.3.8 +pkgrel=1 +pkgdesc="Python API for controlling myStrom switches/plugs" +url="https://github.com/fabaff/python-mystrom" +arch="noarch" +license="MIT" +depends="py3-requests" +makedepends="py3-setuptools" +source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +builddir="$srcdir"/$_pkgname-$pkgver + +replaces=py-mystrom # Backwards compatibility +provides=py-mystrom=$pkgver-r$pkgrel # Backwards compatibility + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="ac28df4d80ac5754234233def2131cb38073f4c4ec9301b5b40d17ea984cec6c06b354916b87bdbaee1693ed7c4adeeb575a5a618dde9c04412361973f3f76e0 python-mystrom-0.3.8.tar.gz" |