diff options
author | Michael Hanson <hansonorders@verizon.net> | 2010-11-18 22:25:33 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verizon.net> | 2010-11-18 22:25:33 (GMT) |
commit | d6c60dcc3df1cc99b2bd0f6cf2342a2cb70a457d (patch) | |
tree | cfc9b84e181bcbdfff3d9653ccc811fa2d382923 /abs | |
parent | 9a28a8250af305afe24eae9de3269da4e54a8837 (diff) | |
download | linhes_pkgbuild-d6c60dcc3df1cc99b2bd0f6cf2342a2cb70a457d.zip linhes_pkgbuild-d6c60dcc3df1cc99b2bd0f6cf2342a2cb70a457d.tar.gz linhes_pkgbuild-d6c60dcc3df1cc99b2bd0f6cf2342a2cb70a457d.tar.bz2 |
python-pyserial: update
Diffstat (limited to 'abs')
-rw-r--r-- | abs/extra/python-pyserial/PKGBUILD | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/abs/extra/python-pyserial/PKGBUILD b/abs/extra/python-pyserial/PKGBUILD index d90ee2d..0cfb46c 100644 --- a/abs/extra/python-pyserial/PKGBUILD +++ b/abs/extra/python-pyserial/PKGBUILD @@ -1,20 +1,21 @@ -# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $ +# $Id: PKGBUILD 29428 2010-10-14 09:13:52Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Douglas Soares de Andrade <dsandrade@gmail.com> # Contributor: Douglas Soares de Andrade <dsandrade@gmail.com> pkgname=python-pyserial -pkgver=2.4 -pkgrel=1 +pkgver=2.5 +pkgrel=2 pkgdesc="Multiplatform Serial Port Module for Python" -arch=('i686' 'x86_64') +arch=('any') url="http://pyserial.sf.net" license=('custom:PYTHON') -depends=('python') +depends=('python2') source=(http://downloads.sourceforge.net/sourceforge/pyserial/pyserial-$pkgver.tar.gz) +md5sums=('34340820710239bea2ceca7f43ef8cab') build() { - cd $startdir/src/pyserial-$pkgver - python setup.py install --root=$startdir/pkg - install -D -m644 LICENSE.txt $startdir/pkg/usr/share/licenses/$pkgname/LICENSE.txt + cd $srcdir/pyserial-$pkgver + python2 setup.py install --root=$pkgdir + install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE.txt } -md5sums=('eec19df59fd75ba5a136992897f8e468') |