uavcan: Throw dsdl_compiler in to libuavcan

* Why not?  Maybe reorganize later.
This commit is contained in:
Kyle Manna 2015-05-20 00:10:37 -07:00
parent 5f4ad781cc
commit 552a433faa
2 changed files with 7 additions and 3 deletions

View file

@ -1,7 +1,7 @@
pkgbase = uavcan-git
pkgdesc = UAVCAN is a lightweight protocol designed for reliable communication in aerospace and robotic applications via CAN bus (git version)
pkgver = 1030.f9b946a
pkgrel = 2
pkgrel = 3
url = http://uavcan.org
arch = i686
arch = x86_64

View file

@ -3,7 +3,7 @@
pkgname=('uavcan-git' 'libuavcan-git')
_gitname=uavcan
pkgver=1030.f9b946a
pkgrel=2
pkgrel=3
pkgdesc="UAVCAN is a lightweight protocol designed for reliable communication in aerospace and robotic applications via CAN bus (git version)"
arch=('i686' 'x86_64')
url="http://uavcan.org"
@ -50,7 +50,11 @@ package_libuavcan-git() {
conflicts=('libuavcan')
make -C "$srcdir/${_gitname}/build" DESTDIR=${pkgdir} install
cd "$srcdir/${_gitname}/libuavcan/dsdl_compiler"
python setup.py install --skip-build -O1 --root="$pkgdir"
# FIXME: there has to be a way to do a more selective install
rm -rf ${pkgdir}/usr/bin
}