summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3cfb1a9b277f0b4f601ef8385f0b0141897f7f7e (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 - This metapackage depends on packages for interfacing common joysticks and human input devices with ROS."
url='https://wiki.ros.org/joystick_drivers'

pkgname='ros-noetic-joystick-drivers'
pkgver='1.15.0'
arch=('any')
pkgrel=1
license=('BSD')

ros_makedepends=(
    ros-noetic-catkin
)
makedepends=(
    cmake
    ros-build-tools
    ${ros_makedepends[@]}
)

ros_depends=(
    ros-noetic-wiimote
    ros-noetic-joy
    ros-noetic-ps3joy
    ros-noetic-spacenav-node
)
depends=(
    ${ros_depends[@]}
)

_dir="joystick_drivers-${pkgver}/joystick_drivers"
source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/ros-drivers/joystick_drivers/archive/${pkgver}.tar.gz")
sha256sums=('37e82742674a5fd4cf9959051aeae3bb961da74f254f891909d10589266166ad')

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
}