mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
WiringX - A modular GPIO library for several platforms
WiringX provides a modular approach to GPIO access, based on WiringPi, but offering a consistent API across multiple platforms. Of the platforms supported by Arch Linux Arm, it currently works on Raspberry Pi 1 / 2 and Hummingboard (Cubox-i)
This commit is contained in:
parent
3f166e1429
commit
c4f9a31b57
3 changed files with 111 additions and 0 deletions
34
alarm/python-wiringx-git/PKGBUILD
Normal file
34
alarm/python-wiringx-git/PKGBUILD
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
# Maintainer: Paul Adams <paul@thoughtcriminal.co.uk>
|
||||||
|
|
||||||
|
buildarch=20
|
||||||
|
|
||||||
|
pkgname=python-wiringx-git
|
||||||
|
pkgver=r68.4492e00
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Python bindings for wiringX"
|
||||||
|
arch=('arm')
|
||||||
|
url="http://www.wiringx.org"
|
||||||
|
license=('GPL')
|
||||||
|
groups=()
|
||||||
|
depends=('python')
|
||||||
|
makedepends=('git')
|
||||||
|
provides=()
|
||||||
|
conflicts=()
|
||||||
|
replaces=()
|
||||||
|
backup=()
|
||||||
|
options=(!emptydirs)
|
||||||
|
install=
|
||||||
|
source=(${pkgname}::git+https://github.com/wiringX/wiringX)
|
||||||
|
md5sums=('SKIP')
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd "${pkgname}"
|
||||||
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${pkgname}/python"
|
||||||
|
python setup.py install --root="$pkgdir/" --optimize=1
|
||||||
|
}
|
||||||
|
|
||||||
|
# vim:set ts=2 sw=2 et:
|
34
alarm/python2-wiringx-git/PKGBUILD
Normal file
34
alarm/python2-wiringx-git/PKGBUILD
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
# Maintainer: Paul Adams <paul@thoughtcriminal.co.uk>
|
||||||
|
|
||||||
|
buildarch=20
|
||||||
|
|
||||||
|
pkgname=python2-wiringx-git
|
||||||
|
pkgver=r68.4492e00
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Python2 bindings for wiringX"
|
||||||
|
arch=('arm')
|
||||||
|
url="http://www.wiringx.org"
|
||||||
|
license=('GPL')
|
||||||
|
groups=()
|
||||||
|
depends=('python2')
|
||||||
|
makedepends=('git')
|
||||||
|
provides=()
|
||||||
|
conflicts=()
|
||||||
|
replaces=()
|
||||||
|
backup=()
|
||||||
|
options=(!emptydirs)
|
||||||
|
install=
|
||||||
|
source=(${pkgname}::git+https://github.com/wiringX/wiringX)
|
||||||
|
md5sums=('SKIP')
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd "${pkgname}"
|
||||||
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${pkgname}/python"
|
||||||
|
python2 setup.py install --root="$pkgdir/" --optimize=1
|
||||||
|
}
|
||||||
|
|
||||||
|
# vim:set ts=2 sw=2 et:
|
43
alarm/wiringx-git/PKGBUILD
Normal file
43
alarm/wiringx-git/PKGBUILD
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
# Maintainer: Paul Adams <paul@thoughtcriminal.co.uk>
|
||||||
|
|
||||||
|
buildarch=20
|
||||||
|
|
||||||
|
pkgname=wiringx-git
|
||||||
|
pkgver=r66.aad47d9
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="wiringX is a modular GPIO interface, derived from wiringPi"
|
||||||
|
arch=('arm')
|
||||||
|
url="http://wiringx.org"
|
||||||
|
license=('GPL')
|
||||||
|
groups=()
|
||||||
|
depends=('glibc')
|
||||||
|
makedepends=('git' 'cmake' 'sed')
|
||||||
|
provides=()
|
||||||
|
conflicts=()
|
||||||
|
replaces=()
|
||||||
|
backup=()
|
||||||
|
options=()
|
||||||
|
install=
|
||||||
|
source=(${pkgname}::git+https://github.com/wiringX/wiringX)
|
||||||
|
noextract=()
|
||||||
|
md5sums=('SKIP')
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd "${pkgname}"
|
||||||
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${pkgname}"
|
||||||
|
msg2 "Removing insecure rpaths"
|
||||||
|
sed -i 's|,-rpath=/usr/local/lib/||g' CMakeLists.txt
|
||||||
|
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr .
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${pkgname}"
|
||||||
|
make DESTDIR="${pkgdir}/" install
|
||||||
|
}
|
||||||
|
|
||||||
|
# vim:set ts=2 sw=2 et:
|
||||||
|
|
Loading…
Reference in a new issue