mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 06:50:05 +01:00
10 lines
394 B
Bash
10 lines
394 B
Bash
|
|
#!/bin/sh
|
||
|
|
#
|
||
|
|
# This does not honor $bindir properly, because we cannot get to it
|
||
|
|
# here. Does anyone build to something but prefix/bin?
|
||
|
|
#
|
||
|
|
bindir="${DESTDIR}/${MESON_INSTALL_PREFIX}/bin"
|
||
|
|
mkdir -p "$bindir"
|
||
|
|
cp "${MESON_SOURCE_ROOT}/tools/libinput-list-devices.compat" "${bindir}/libinput-list-devices"
|
||
|
|
cp "${MESON_SOURCE_ROOT}/tools/libinput-debug-events.compat" "${bindir}/libinput-debug-events"
|