indigo: add robot.

This commit is contained in:
Benjamin Chrétien 2014-06-07 18:19:43 +02:00
commit ec67542ae0
2 changed files with 70 additions and 0 deletions

17
.SRCINFO Normal file
View file

@ -0,0 +1,17 @@
pkgbase = ros-indigo-eigen-stl-containers
pkgdesc = ROS - This package provides a set of typedefs that allow using Eigen datatypes in STL containers.
pkgver = 0.1.4
pkgrel = 1
url = http://eigen.tuxfamily.org/dox/TopicUnalignedArrayAssert.html
arch = any
license = BSD
makedepends = cmake
makedepends = git
makedepends = ros-build-tools
makedepends = ros-indigo-catkin
depends = eigen3
source = eigen_stl_containers::git+https://github.com/ros-gbp/eigen_stl_containers-release.git#tag=release/indigo/eigen_stl_containers/0.1.4-0
md5sums = SKIP
pkgname = ros-indigo-eigen-stl-containers

53
PKGBUILD Normal file
View file

@ -0,0 +1,53 @@
# Script generated with import_catkin_packages.py
# For more information: https://github.com/bchretien/arch-ros-stacks
pkgdesc="ROS - This package provides a set of typedefs that allow using Eigen datatypes in STL containers."
url='http://eigen.tuxfamily.org/dox/TopicUnalignedArrayAssert.html'
pkgname='ros-indigo-eigen-stl-containers'
pkgver='0.1.4'
_pkgver_patch=0
arch=('any')
pkgrel=1
license=('BSD')
ros_makedepends=(ros-indigo-catkin)
makedepends=('cmake' 'git' 'ros-build-tools'
${ros_makedepends[@]})
ros_depends=()
depends=(${ros_depends[@]}
eigen3)
_tag=release/indigo/eigen_stl_containers/${pkgver}-${_pkgver_patch}
_dir=eigen_stl_containers
source=("${_dir}"::"git+https://github.com/ros-gbp/eigen_stl_containers-release.git"#tag=${_tag})
md5sums=('SKIP')
build() {
# Use ROS environment variables
source /usr/share/ros-build-tools/clear-ros-env.sh
[ -f /opt/ros/indigo/setup.bash ] && source /opt/ros/indigo/setup.bash
# Create build directory
[ -d ${srcdir}/build ] || mkdir ${srcdir}/build
cd ${srcdir}/build
# Fix Python2/Python3 conflicts
/usr/share/ros-build-tools/fix-python-scripts.sh -v 2 ${srcdir}/${_dir}
# Build project
cmake ${srcdir}/${_dir} \
-DCMAKE_BUILD_TYPE=Release \
-DCATKIN_BUILD_BINARY_PACKAGE=ON \
-DCMAKE_INSTALL_PREFIX=/opt/ros/indigo \
-DPYTHON_EXECUTABLE=/usr/bin/python2 \
-DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \
-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
-DSETUPTOOLS_DEB_LAYOUT=OFF
make
}
package() {
cd "${srcdir}/build"
make DESTDIR="${pkgdir}/" install
}