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

_pkgname=warehouse_ros
pkgname=ros2-humble-warehouse-ros
pkgver=2.0.4
pkgrel=4
pkgdesc="Persistent storage of ROS messages"
url="https://index.ros.org/p/warehouse_ros/"
arch=('any')
depends=(
    'ros2-humble'
    'boost-libs'
    'openssl'
)
makedepends=(
    'boost'
    'cmake'
)
source=("https://github.com/ros-planning/warehouse_ros/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('84edb26f4e959ef193a02248bd1d8420b2e144520719189844bace97ee440ddc')


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

    cmake -B build -S "$_pkgname-$pkgver" \
        -DCMAKE_BUILD_TYPE='None' \
        -DCMAKE_INSTALL_PREFIX='/opt/ros/humble' \
        -Wno-dev
    
    cmake --build build
}

package() {
    DESTDIR="$pkgdir" cmake --install build
}