mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
removed alarm/pybbio (#869)
This commit is contained in:
parent
e35d94343f
commit
3e6468dada
1 changed files with 0 additions and 34 deletions
|
@ -1,34 +0,0 @@
|
|||
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
|
||||
buildarch=4
|
||||
|
||||
pkgname=pybbio
|
||||
pkgver=v0.5.98.g81a4a22
|
||||
pkgver() {
|
||||
cd "${srcdir}/${pkgname}"
|
||||
git describe --always | sed 's|-|.|g'
|
||||
}
|
||||
pkgrel=1
|
||||
pkgdesc="A Python library for Arduino-style hardware IO support on the TI BeagleBone"
|
||||
arch=('armv7h')
|
||||
url="https://github.com/alexanderhiam/PyBBIO"
|
||||
license=('Apache')
|
||||
depends=('python2')
|
||||
makedepends=('git')
|
||||
source=("$pkgname::git://github.com/alexanderhiam/PyBBIO.git")
|
||||
md5sums=('SKIP')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}"
|
||||
|
||||
sed -i 's:env python:env python2:' examples/*.py tests/*.py
|
||||
python2 setup.py build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}"
|
||||
|
||||
python2 setup.py install --root=${pkgdir}
|
||||
install -m 0755 -d "${pkgdir}/usr/share/pybbio/examples"
|
||||
cp examples/* "${pkgdir}/usr/share/pybbio/examples"
|
||||
}
|
Loading…
Reference in a new issue