diff options
Diffstat (limited to 'pcr/python-xbee')
-rw-r--r-- | pcr/python-xbee/PKGBUILD | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pcr/python-xbee/PKGBUILD b/pcr/python-xbee/PKGBUILD new file mode 100644 index 000000000..c0771bf3e --- /dev/null +++ b/pcr/python-xbee/PKGBUILD @@ -0,0 +1,17 @@ +# Contributor (Arch) : ? +# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> + +pkgname=python-xbee +pkgver=2.1.0 +pkgrel=1 +pkgdesc='Python tools for working with XBee radios' +url='https://pypi.python.org/pypi/XBee' +arch=('any') +license=('MIT') +depends=('python' 'python-pyserial') +source=("https://pypi.python.org/packages/source/X/XBee/XBee-${pkgver}.tar.gz") + +package() { + cd XBee-$pkgver + python setup.py install --root="$pkgdir" +} |