mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
667 B
Bash
19 lines
667 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Douglas Soares de Andrade <dsandrade@gmail.com>
|
|
|
|
pkgname=python-pyparallel
|
|
pkgver=0.2
|
|
pkgrel=1
|
|
pkgdesc="This module encapsulates the access for the parallel port."
|
|
arch=('i686' 'x86_64')
|
|
url="http://pyserial.sourceforge.net/pyparallel.html"
|
|
license=('custom:PYTHON')
|
|
depends=('python')
|
|
source=("http://downloads.sourceforge.net/sourceforge/pyserial/pyparallel-$pkgver.zip")
|
|
|
|
build() {
|
|
cd $startdir/src/pyparallel-$pkgver
|
|
python setup.py install --prefix $startdir/pkg/usr
|
|
install -D -m644 LICENSE.txt $startdir/pkg/usr/share/licenses/$pkgname/LICENSE.txt
|
|
}
|
|
md5sums=('46b65592f0b2fa7094ca87bf053e93a7')
|