summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e36d1cc3f6bf2d9cd8369728fbfc1d69a49e223f (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
# Maintainer: Angelo Elias Dal Zotto <angelodalzotto97@gmail.com>

_pkgname=nav2_rotation_shim_controller
pkgname=ros2-humble-nav2-rotation-shim-controller
pkgver=1.1.6
pkgrel=2
pkgdesc="Rotation Shim Controller"
url="https://index.ros.org/p/nav2_rotation_shim_controller/"
arch=('any')
makedepends=(
    'ros2-humble-nav2-regulated-pure-pursuit-controller'
    'ros2-humble-nav2-controller'
)
depends=(
    'ros2-humble' 
    'ros2-humble-nav2-common'
    'ros2-humble-nav2-core'
    'ros2-humble-nav2-util'
    'ros2-humble-nav2-costmap-2d'
    'ros2-humble-nav2-msgs'
    'ros2-humble-angles'
)
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 \
        -DCMAKE_CXX_FLAGS="-Wno-error=maybe-uninitialized"
}

build() {
source /opt/ros/humble/setup.bash
    make -C build
}

package() {
    make DESTDIR="$pkgdir/" -C build install
}