blob: cce064dc76c49c11642ce9c313ee768d1556fe0f (
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
|
# Maintainer: Angelo Elias Dal Zotto <angelodalzotto97@gmail.com>
_pkgroot=moveit_resources
_pkgname=panda_description
pkgname=ros2-humble-moveit-resources-panda-description
pkgver=2.0.6
pkgrel=4
pkgdesc="panda Resources used for MoveIt testing"
url="https://index.ros.org/p/panda_description/"
arch=('any')
depends=(
'ros2-humble'
)
makedepends=('cmake')
source=("https://github.com/ros-planning/moveit_resources/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('25d86930fd51927670ea3135ad398bc6b4a9ade2c6a629d63e02f818431a52ac')
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
}
|