blob: 17214c3830f94d6f639dcde79bb6239886164f8c (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Maintainer: Achmad Fathoni<fathoni.id(at)gmail.com>
pkgdesc="ROS package for real-time 6DOF SLAM using a 3D LIDAR"
url='https://github.com/koide3/hdl_graph_slam'
pkgname='ros-noetic-hdl-graph-slam-git'
pkgver=r172.85209f7
arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'armv6h')
pkgrel=1
license=('BSD 2-Clause License')
ros_makedepends=(ros-noetic-catkin)
makedepends=(
cmake
ros-build-tools
${ros_makedepends[@]}
)
ros_depends=(
ros-noetic-ndt-omp
ros-noetic-fast-gicp
ros-noetic-pcl-ros
ros-noetic-cpp-common
ros-noetic-rospy
ros-noetic-geodesy
ros-noetic-nodelet
ros-noetic-nmea-msgs
ros-noetic-sensor-msgs
ros-noetic-message-generation
)
depends=(
${ros_depends[@]}
g2o
openmp
)
source=(
$pkgname::git://github.com/koide3/hdl_graph_slam.git
)
sha256sums=(
'SKIP'
)
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
# Use ROS environment variables
[ -f /opt/ros/noetic/setup.bash ] && source /opt/ros/noetic/setup.bash
# Build project
cmake -Wno-dev -B build -S ${pkgname} \
-DCMAKE_BUILD_TYPE=Release \
-DCATKIN_ENABLE_TESTING=0 \
-DCATKIN_BUILD_BINARY_PACKAGE=ON \
-DCMAKE_INSTALL_PREFIX=/opt/ros/noetic \
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
-DSETUPTOOLS_DEB_LAYOUT=OFF \
-DCMAKE_CXX_STANDARD=17
make -sC build
}
package() {
cd build
make DESTDIR="${pkgdir}/" install
}
|