summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 71023f372b4893d1db53c6add7dc26071b4a36cc (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>

_pkgroot=moveit2
_pkgname=moveit_configs_utils
pkgname=ros2-humble-moveit-configs-utils
pkgver=2.5.4
pkgrel=4
pkgdesc="Python library for loading moveit config parameters in launch files"
url="https://index.ros.org/p/moveit_configs_utils/"
arch=('any')
depends=(
    'ros2-humble'
    'ros2-humble-launch-param-builder'
    'ros2-humble-srdfdom'
)
makedepends=(python-build python-installer python-wheel)
source=("https://github.com/ros-planning/moveit2/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('42ac45e2631d59203edfdfc2f521312f7ddef04ff5baf1fec43c65f79495d7a6')


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

    cd "$_pkgroot-$pkgver/$_pkgname"
    python -m build --wheel --no-isolation 
}

package() {
    cd "$_pkgroot-$pkgver/$_pkgname"
    python -m installer --destdir="$pkgdir" --prefix="/opt/ros/humble" dist/*.whl
}