-
Notifications
You must be signed in to change notification settings - Fork 1
/
PKGBUILD
88 lines (79 loc) · 2.53 KB
/
PKGBUILD
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
# Maintainer: Timon Engelke <[email protected]>
pkgdesc="ROS - The move_base package provides an implementation of an action (see the actionlib package) that, given a goal in the world, will attempt to reach it with a mobile base."
url='https://wiki.ros.org/move_base'
pkgname='ros-noetic-move-base'
pkgver='1.16.2'
arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'armv6h')
pkgrel=3
license=('BSD')
ros_makedepends=(ros-noetic-nav-core
ros-noetic-tf
ros-noetic-catkin
ros-noetic-roscpp
ros-noetic-geometry-msgs
ros-noetic-std-msgs
ros-noetic-rotate-recovery
ros-noetic-base-local-planner
ros-noetic-clear-costmap-recovery
ros-noetic-rospy
ros-noetic-navfn
ros-noetic-costmap-2d
ros-noetic-message-generation
ros-noetic-std-srvs
ros-noetic-actionlib
ros-noetic-visualization-msgs
ros-noetic-move-base-msgs
ros-noetic-cmake-modules
ros-noetic-dynamic-reconfigure
ros-noetic-nav-msgs
ros-noetic-pluginlib)
makedepends=('cmake' 'ros-build-tools'
${ros_makedepends[@]})
ros_depends=(ros-noetic-nav-core
ros-noetic-navfn
ros-noetic-roscpp
ros-noetic-geometry-msgs
ros-noetic-message-runtime
ros-noetic-base-local-planner
ros-noetic-clear-costmap-recovery
ros-noetic-rospy
ros-noetic-std-msgs
ros-noetic-costmap-2d
ros-noetic-nav-msgs
ros-noetic-std-srvs
ros-noetic-actionlib
ros-noetic-visualization-msgs
ros-noetic-move-base-msgs
ros-noetic-tf
ros-noetic-dynamic-reconfigure
ros-noetic-rotate-recovery
ros-noetic-pluginlib)
depends=(${ros_depends[@]})
# Git version (e.g. for debugging)
# _tag=release/noetic/move_base/${pkgver}-${_pkgver_patch}
# _dir=${pkgname}
# source=("${_dir}"::"git+https://github.com/ros-gbp/navigation-release.git"#tag=${_tag})
# sha256sums=('SKIP')
# Tarball version (faster download)
_dir="navigation-${pkgver}/move_base"
source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/ros-planning/navigation/archive/${pkgver}.tar.gz")
sha256sums=('d83201296e773e2789635fddf39ac18e9465219b18707e53bd2361de4762d205')
build() {
# Use ROS environment variables
source /usr/share/ros-build-tools/clear-ros-env.sh
[ -f /opt/ros/noetic/setup.bash ] && source /opt/ros/noetic/setup.bash
# Create build directory
[ -d ${srcdir}/build ] || mkdir ${srcdir}/build
cd ${srcdir}/build
# Build project
cmake ${srcdir}/${_dir} \
-DCATKIN_BUILD_BINARY_PACKAGE=ON \
-DCMAKE_INSTALL_PREFIX=/opt/ros/noetic \
-DPYTHON_EXECUTABLE=/usr/bin/python \
-DSETUPTOOLS_DEB_LAYOUT=OFF
make
}
package() {
cd "${srcdir}/build"
make DESTDIR="${pkgdir}/" install
}