blob: dc28a9531d5356bb59db85dcdc8874b7a5badba8 (
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
|
#Submitter: Achmad Fathoni<fathoni.id(at)gmail.com>
pkgdesc="ROS interface for the DJI onboard SDK"
url="https://github.com/dji-sdk/Onboard-SDK-ROS"
pkgname='ros-noetic-onboard-sdk-ros'
pkgver='4.1.0'
arch=('x86_64')
license=('MIT')
pkgrel=2
ros_makedepends=(ros-noetic-catkin)
makedepends=(
cmake
ros-build-tools
${ros_makedepends[@]}
)
ros_depends=(ros-noetic-nmea-comms)
depends=(
${ros_depends[@]}
onboard-sdk
ffmpeg
libusb
sdl2
opencv
)
_dir="Onboard-SDK-ROS-${pkgver}"
source=("https://github.com/dji-sdk/Onboard-SDK-ROS/archive/refs/tags/${pkgver}.tar.gz"
"https://github.com/dji-sdk/Onboard-SDK-ROS/pull/464.patch")
sha256sums=('83bb5a30c70c7887a74f0e858e3b6563091ed7a5e58b8f462ea9ec2a9b2639ea' 'SKIP')
prepare() {
cd "${_dir}"
patch --forward --strip=1 --input="${srcdir}/464.patch"
}
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
# Build project
cmake -B build -S ${_dir} \
-DCMAKE_BUILD_TYPE=Release \
-DCATKIN_ENABLE_TESTING=0 \
-DCATKIN_BUILD_BINARY_PACKAGE=ON \
-DCMAKE_INSTALL_PREFIX=/opt/ros/noetic \
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
-DPYTHON_INCLUDE_DIR=/usr/include/python3.9 \
-DPYTHON_LIBRARY=/usr/lib/libpython3.9.so \
-DPYTHON_BASENAME=-python3.9 \
-DSETUPTOOLS_DEB_LAYOUT=OFF
make -C build
}
package() {
cd build
make DESTDIR="${pkgdir}/" install
}
|