indigo: add ros_core.

This commit is contained in:
Benjamin Chrétien 2014-06-07 17:32:12 +02:00
commit 73358f1be2
2 changed files with 68 additions and 0 deletions

16
.SRCINFO Normal file
View file

@ -0,0 +1,16 @@
pkgbase = ros-indigo-rosbag-migration-rule
pkgdesc = ROS - This empty package allows to export rosbag migration rule files without depending on rosbag.
pkgver = 1.0.0
pkgrel = 1
url = http://ros.org/wiki/rosbag_migration_rule
arch = any
license = BSD
makedepends = cmake
makedepends = git
makedepends = ros-build-tools
makedepends = ros-indigo-catkin
source = rosbag_migration_rule::git+https://github.com/ros-gbp/rosbag_migration_rule-release.git#tag=release/indigo/rosbag_migration_rule/1.0.0-0
md5sums = SKIP
pkgname = ros-indigo-rosbag-migration-rule

52
PKGBUILD Normal file
View file

@ -0,0 +1,52 @@
# Script generated with import_catkin_packages.py
# For more information: https://github.com/bchretien/arch-ros-stacks
pkgdesc="ROS - This empty package allows to export rosbag migration rule files without depending on rosbag."
url='http://ros.org/wiki/rosbag_migration_rule'
pkgname='ros-indigo-rosbag-migration-rule'
pkgver='1.0.0'
_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[@]})
_tag=release/indigo/rosbag_migration_rule/${pkgver}-${_pkgver_patch}
_dir=rosbag_migration_rule
source=("${_dir}"::"git+https://github.com/ros-gbp/rosbag_migration_rule-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
}