mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
34 lines
814 B
Bash
34 lines
814 B
Bash
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
buildarch=4
|
|
|
|
pkgname=pybbio
|
|
pkgver=v0.5.43.g3be217a
|
|
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"
|
|
}
|