wiringX
PKGBUILD
buildarch=20
pkgbase='wiringx-git'
pkgname=('wiringx-git' 'python-wiringx-git' 'python2-wiringx-git')
pkgver=9999
pkgrel=1
pkgdesc="wiringX is a modular GPIO interface, derived from wiringPi"
arch=('armv6h' 'armv7h')
url="http://wiringx.org"
license=('GPL')
makedepends=('git' 'cmake' 'sed' 'python-setuptools' 'python2-setuptools')
source=(${pkgname}::git+https://github.com/vitalogy/wiringX#branch=sunxidt)
md5sums=('SKIP')
build() {
cd "${pkgname}"
msg2 "Removing insecure rpaths"
sed -i 's|,-rpath=/usr/local/lib/||g' CMakeLists.txt
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr .
}
package_wiringx-git() {
cd "${pkgname}"
make DESTDIR="${pkgdir}/" install
}
package_python-wiringx-git() {
depends=('python' 'wiringx-git')
pkgdesc="Python bindings for wiringX"
cd "${pkgbase}/python"
python setup.py install --root="$pkgdir/" --optimize=1
}
package_python2-wiringx-git() {
depends=('python2' 'wiringx-git')
pkgdesc="Python2 bindings for wiringX"
cd "${pkgbase}/python"
python2 setup.py install --root="$pkgdir/" --optimize=1
}