diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2014-06-14 15:43:45 +0000 |
---|---|---|
committer | Fabian Affolter <fabian@affolter-engineering.ch> | 2014-07-07 18:12:34 +0000 |
commit | 673218001f21d98421ca3c5c82bc1ebc02e56f6e (patch) | |
tree | 9da29f9f2ccc9718447ec1f49be5f644a9fc8f73 /testing/py-batinfo/APKBUILD | |
parent | 37dc73e7d1a3a0f43dd59613784177f9485c4ce8 (diff) | |
download | aports-673218001f21d98421ca3c5c82bc1ebc02e56f6e.tar.bz2 aports-673218001f21d98421ca3c5c82bc1ebc02e56f6e.tar.xz |
testing/py-batinfo: new aport
A Python lib to grab batteries' informations on Linux operating system
https://github.com/nicolargo/batinfo
Diffstat (limited to 'testing/py-batinfo/APKBUILD')
-rw-r--r-- | testing/py-batinfo/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py-batinfo/APKBUILD b/testing/py-batinfo/APKBUILD new file mode 100644 index 000000000..0ea3bac04 --- /dev/null +++ b/testing/py-batinfo/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-batinfo +_pkgname=batinfo +pkgver=0.1.8 +pkgrel=0 +pkgdesc="A simple Python lib to retreive battery information" +url="https://github.com/nicolargo/batinfo" +arch="noarch" +license="LGPL3+" +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="8dcfabbd7aa445906ff302e030d14e5e batinfo-0.1.8.tar.gz" +sha256sums="ca3cf8f60d4933c56f7a085ce4ae87cac39e653c5162c14c837bddc3e915d5b5 batinfo-0.1.8.tar.gz" +sha512sums="71a2be8fba121395fab13eefe57f3766240aa6f32aa4c7500551a5533f522b644d2e6bebdea04577c96044b52401f5ea08a524b5bc3de66947bfbbc4b44d8eb6 batinfo-0.1.8.tar.gz" |