summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a70e5ccef82bdac9a5be8407b1f5e54e38310806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: YangZhichao <1036711084@qq.com>
pkgname=ros2-humble-foxglove-msgs
pkgver=2.3.0
pkgrel=1
pkgdesc="Message schemas supported by Foxglove Studio"
arch=(x86_64)
url="https://github.com/foxglove/schemas"
license=('MIT')
depends=("ros2-humble")
makedepends=("git")
source=("https://github.com/foxglove/schemas/archive/refs/tags/ros-v$pkgver.tar.gz")
sha256sums=('ef37a00b166209fd9801efd7b7da9e0245b61fffa8c444835b9ae15ee28c7952')

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


package() {
	mkdir -p $pkgdir/opt/ros/humble
	cp -r $srcdir/install/foxglove_msgs/* $pkgdir/opt/ros/humble
}