mirror of
https://github.com/archlinux/aur.git
synced 2026-02-14 12:20:27 +01:00
indigo: add robot.
This commit is contained in:
commit
dcbd17a9ee
2 changed files with 73 additions and 0 deletions
19
.SRCINFO
Normal file
19
.SRCINFO
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
pkgbase = ros-indigo-executive-smach
|
||||
pkgdesc = ROS - This metapackage depends on the SMACH library and ROS SMACH integration packages.
|
||||
pkgver = 2.0.0
|
||||
pkgrel = 1
|
||||
url = http://ros.org/wiki/smach
|
||||
arch = any
|
||||
license = BSD
|
||||
makedepends = cmake
|
||||
makedepends = git
|
||||
makedepends = ros-build-tools
|
||||
makedepends = ros-indigo-catkin
|
||||
depends = ros-indigo-smach
|
||||
depends = ros-indigo-smach-msgs
|
||||
depends = ros-indigo-smach-ros
|
||||
source = executive_smach::git+https://github.com/ros-gbp/executive_smach-release.git#tag=release/indigo/executive_smach/2.0.0-0
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = ros-indigo-executive-smach
|
||||
|
||||
54
PKGBUILD
Normal file
54
PKGBUILD
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
# Script generated with import_catkin_packages.py
|
||||
# For more information: https://github.com/bchretien/arch-ros-stacks
|
||||
pkgdesc="ROS - This metapackage depends on the SMACH library and ROS SMACH integration packages."
|
||||
url='http://ros.org/wiki/smach'
|
||||
|
||||
pkgname='ros-indigo-executive-smach'
|
||||
pkgver='2.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=(ros-indigo-smach
|
||||
ros-indigo-smach-msgs
|
||||
ros-indigo-smach-ros)
|
||||
depends=(${ros_depends[@]})
|
||||
|
||||
_tag=release/indigo/executive_smach/${pkgver}-${_pkgver_patch}
|
||||
_dir=executive_smach
|
||||
source=("${_dir}"::"git+https://github.com/ros-gbp/executive_smach-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
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue