blob: a47ca1a972a20a46c7c766fc8ba38df75b0985a4 (
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
|
# Maintainer: Angelo Elias Dal Zotto <angelodalzotto97@gmail.com>
_pkgroot=ros2_control
_pkgname=controller_manager
pkgname=ros2-humble-controller-manager
pkgver=2.26.0
pkgrel=2
pkgdesc="Description of controller_manager"
url="https://index.ros.org/p/controller_manager/"
arch=('any')
depends=(
'ros2-humble'
'ros2-humble-backward-ros'
'ros2-humble-controller-interface'
'ros2-humble-controller-manager-msgs'
'ros2-humble-diagnostic-updater'
'ros2-humble-hardware-interface'
'ros2-humble-realtime-tools'
'ros2-humble-ros2-control-test-assets'
)
makedepends=('cmake')
source=("https://github.com/ros-controls/ros2_control/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('bb8b1233fa6db7dd2f56cf350c9ef9c5750f83e212df62981480a2453656f0cf')
build() {
source /opt/ros/humble/setup.bash
cmake -B build -S "$_pkgroot-$pkgver/$_pkgname" \
-DCMAKE_BUILD_TYPE='None' \
-DCMAKE_INSTALL_PREFIX='/opt/ros/humble' \
-Wno-dev
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
|