blob: c13a7aeddf4ea5a216cae3286415d86660a85d1b (
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
70
71
72
73
74
75
76
77
78
|
# Maintainer: Achmad Fathoni<fathoni.id(at)gmail.com>
pkgdesc="open source 3D LIDAR-based mapping framework"
url='https://github.com/SMRT-AIST/interactive_slam'
pkgname='ros-noetic-interactive-slam-git'
pkgver=r80.b39352f
arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'armv6h')
pkgrel=4
license=('GPLv3')
ros_makedepends=(ros-noetic-catkin)
makedepends=(
cmake
ros-build-tools
${ros_makedepends[@]}
)
ros_depends=(
ros-noetic-geodesy
ros-noetic-pcl-ros
ros-noetic-nmea-msgs
ros-noetic-hdl-graph-slam-git
ros-noetic-odometry-saver-git
)
depends=(
${ros_depends[@]}
g2o
openmp
pcl
glfw-x11
glm
kdialog
)
imgui_hash=c077dd4872f435dd959feb024e5a9adb2c7df20c
portable_hash=ece1202552b887bb2dc72d0364f5b2069639e53c
source=(
$pkgname::git://github.com/koide3/interactive_slam.git
imgui::https://github.com/ocornut/imgui/archive/$imgui_hash.tar.gz
portable-file-dialogs::https://github.com/samhocevar/portable-file-dialogs/archive/$portable_hash.tar.gz
)
sha256sums=(
'SKIP'
'SKIP'
'SKIP'
)
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare(){
mv -n imgui-$imgui_hash/* "$pkgname/thirdparty/imgui"
mv -n portable-file-dialogs-$portable_hash/* "$pkgname/thirdparty/portable-file-dialogs"
}
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
}
|