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

_pkgname=moveit_ros/move_group
pkgname=ros2-humble-moveit-ros-move-group
pkgver=2.5.4
pkgrel=1
pkgdesc="The move_group node for MoveIt"
url="https://index.ros.org/p/moveit_ros_move_group/"
arch=('any')
makedepends=(
    'ros2-humble-moveit-common'
    'ros2-humble-moveit-resources-fanuc-moveit-config'
    'lld'
)
depends=(
    'ros2-humble'
    'ros2-humble-moveit-core'
    'ros2-humble-moveit-ros-planning'
    'ros2-humble-moveit-ros-occupancy-map-monitor'
    'ros2-humble-moveit-kinematics'
)
source=("https://github.com/ros-planning/moveit2/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('42ac45e2631d59203edfdfc2f521312f7ddef04ff5baf1fec43c65f79495d7a6')

prepare() {
    source /opt/ros/humble/setup.bash

    cmake -S moveit2-$pkgver/$_pkgname -B build \
        -DCMAKE_BUILD_TYPE=Release \
        -DCMAKE_INSTALL_PREFIX=/opt/ros/humble \
        -DCMAKE_EXE_LINKER_FLAGS=-fuse-ld=lld
}

build() {
    make -C build
}

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