blob: c3372233de9e824d5cc5dbddbbfc979a6eb6fcbf (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Script generated with create_pkgbuild.py
# For more information: https://github.com/ros-melodic-arch/ros-build-tools-py3
pkgdesc="ROS - The teb_local_planner package implements a plugin to the base_local_planner of the 2D navigation stack."
url='http://wiki.ros.org/teb_local_planner'
pkgname='ros-melodic-teb-local-planner'
pkgver='0.8.4'
arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'armv6h')
pkgrel=4
license=('BSD')
ros_makedepends=(ros-melodic-mbf-costmap-core
ros-melodic-interactive-markers
ros-melodic-tf2-eigen
ros-melodic-costmap-2d
ros-melodic-costmap-converter
ros-melodic-pluginlib
ros-melodic-mbf-msgs
ros-melodic-visualization-msgs
ros-melodic-nav-core
ros-melodic-nav-msgs
ros-melodic-std-msgs
ros-melodic-cmake-modules
ros-melodic-geometry-msgs
ros-melodic-catkin
ros-melodic-roscpp
ros-melodic-tf2-geometry-msgs
ros-melodic-base-local-planner
ros-melodic-message-generation
ros-melodic-tf2-ros
ros-melodic-tf2
ros-melodic-dynamic-reconfigure
ros-melodic-libg2o)
makedepends=('cmake' 'ros-build-tools'
${ros_makedepends[@]}
)
ros_depends=(ros-melodic-mbf-costmap-core
ros-melodic-visualization-msgs
ros-melodic-base-local-planner
ros-melodic-interactive-markers
ros-melodic-nav-core
ros-melodic-roscpp
ros-melodic-nav-msgs
ros-melodic-costmap-2d
ros-melodic-message-runtime
ros-melodic-costmap-converter
ros-melodic-pluginlib
ros-melodic-tf2
ros-melodic-mbf-msgs
ros-melodic-dynamic-reconfigure
ros-melodic-std-msgs
ros-melodic-tf2-ros
ros-melodic-geometry-msgs
ros-melodic-libg2o)
depends=(${ros_depends[@]}
)
# Tarball version (faster download)
_dir="teb_local_planner-release-release-melodic-teb_local_planner"
source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/rst-tu-dortmund/teb_local_planner-release/archive/release/melodic/teb_local_planner/${pkgver}.tar.gz")
sha256sums=('110f4beecfe1bfb624242217c692c944a8e25ea2daf00af385751518df20d109')
build() {
# Use ROS environment variables
source /usr/share/ros-build-tools/clear-ros-env.sh
[ -f /opt/ros/melodic/setup.bash ] && source /opt/ros/melodic/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 3 ${srcdir}/${_dir}
# Build project
cmake ${srcdir}/${_dir} \
-DCMAKE_BUILD_TYPE=Release \
-DCATKIN_ENABLE_TESTING=0 \
-DCATKIN_BUILD_BINARY_PACKAGE=ON \
-DCMAKE_INSTALL_PREFIX=/opt/ros/melodic \
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
-DPYTHON_INCLUDE_DIR=/usr/include/python3.7m \
-DPYTHON_LIBRARY=/usr/lib/libpython3.7m.so \
-DPYTHON_BASENAME=.cpython-37m \
-DSETUPTOOLS_DEB_LAYOUT=OFF \
-DBOOST_ROOT=/opt/boost1.69 \
-DBoost_NO_SYSTEM_PATHS=TRUE
make
}
package() {
cd "${srcdir}/build"
make DESTDIR="${pkgdir}/" install
}
|