blob: 0ebba117f023b2381cd1c5da640bdcefd9e6ddbf (
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
|
# Maintainer: Angelo Elias Dal Zotto <angelodalzotto97@gmail.com>
_pkgname=nav2_dwb_controller/dwb_msgs
pkgname=ros2-humble-dwb-msgs
pkgver=1.1.6
pkgrel=1
pkgdesc="Message/Service definitions specifically for the dwb_core"
url="https://index.ros.org/p/dwb_msgs/"
arch=('any')
depends=(
'ros2-humble'
'ros2-humble-nav-2d-msgs'
)
source=("https://github.com/ros-planning/navigation2/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('43abfa0eba8e3862e9f69e39399b0b6b627d2fa44faede494b09b7ee8c2626c1')
prepare() {
source /opt/ros/humble/setup.bash
cmake -S navigation2-$pkgver/$_pkgname -B build \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/opt/ros/humble
}
build() {
make -C build
}
package() {
make DESTDIR="$pkgdir/" -C build install
}
|