From 552a433faafb371e54f661c72512db55fc8075a1 Mon Sep 17 00:00:00 2001 From: Kyle Manna Date: Wed, 20 May 2015 00:10:37 -0700 Subject: [PATCH] uavcan: Throw dsdl_compiler in to libuavcan * Why not? Maybe reorganize later. --- .SRCINFO | 2 +- PKGBUILD | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 004c8c15d68d..a7136f37848c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -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 diff --git a/PKGBUILD b/PKGBUILD index 7ad8103d59f0..7e33380d1c9f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -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 }