blob: fe90a16731d1dedb5c94cb4c7d51f48c2b7f42a1 (
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
|
pkgdesc="ROS - RealSense Camera package allowing access to Intel T265 Tracking module and SR300 and D400 3D cameras"
url='http://www.ros.org/wiki/RealSense'
pkgname='ros-noetic-realsense2-description'
pkgver='2.3.2'
arch=('i686' 'x86_64' 'aarch64' 'armv7h' 'armv6h')
pkgrel=1
license=("Apache-2.0")
ros_makedepends=(
ros-noetic-catkin
)
makedepends=(
cmake
ros-build-tools
${ros_makedepends[@]}
)
ros_depends=(
ros-noetic-xacro
ros-noetic-urdf
)
depends=(
${ros_depends[@]}
)
_dir="realsense-ros-31d7c2b328b1b4d72a9e24d946341705b7b8907c/realsense2_description"
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/IntelRealSense/realsense-ros/archive/31d7c2b328b1b4d72a9e24d946341705b7b8907c.tar.gz")
sha256sums=('3cc1bb0ba1c4499142486a682583ae0d049b6b8e22295f07a62754f3e6ce7068')
build() {
# Use ROS environment variables
source /usr/share/ros-build-tools/clear-ros-env.sh
[ -f /opt/ros/noetic/setup.bash ] && source /opt/ros/noetic/setup.bash
# Create build directory
[ -d ${srcdir}/build ] || mkdir ${srcdir}/build
cd ${srcdir}/build
# Build project
cmake ${srcdir}/${_dir} \
-DCATKIN_BUILD_BINARY_PACKAGE=ON \
-DCMAKE_INSTALL_PREFIX=/opt/ros/noetic \
-DPYTHON_EXECUTABLE=/usr/bin/python \
-DSETUPTOOLS_DEB_LAYOUT=OFF
make
}
package() {
cd "${srcdir}/build"
make DESTDIR="${pkgdir}/" install
}
|