blob: 6532f10b570eb1728f5ff525b9b68c62e48eabc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Maintainer: Guilhem Saurel <saurel@laas.fr>
_pkgname=pinocchio
_pkgver=1.1.2
pkgname=${_pkgname}-git
pkgver=${_pkgver}.r1010.50f3e32
pkgrel=2
pkgdesc="Dynamic computations using Spatial Algebra"
arch=('i686' 'x86_64')
url="https://stack-of-tasks.github.io/pinocchio/"
license=('LGPL3 or any later version')
depends=('eigenpy')
optdepends=('metapod-git' 'urdfdom' 'lua51')
makedepends=('cmake' 'gcc5' 'git')
conflicts=('pinocchio')
source=("$_pkgname"::"git://github.com/stack-of-tasks/$_pkgname.git")
md5sums=('SKIP')
pkgver() {
cd "$_pkgname"
echo "$_pkgver.r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}
prepare() {
cd "$_pkgname"
git checkout devel
git submodule update --init
}
build() {
cd "$_pkgname"
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/lib \
-DCMAKE_CXX_FLAGS=-std=c++03 -DBUILD_UNIT_TESTS=OFF .
make
}
package() {
cd "$_pkgname"
make DESTDIR="$pkgdir/" install
}
|