mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
c4f9a31b57
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)
43 lines
830 B
Bash
43 lines
830 B
Bash
# 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:
|
|
|