mirror of
https://github.com/linux-usb-gadgets/libusbgx.git
synced 2025-07-13 00:30:06 +03:00
6 lines
415 B
Bash
Executable file
6 lines
415 B
Bash
Executable file
#!/bin/sh
|
|
|
|
install -d "${DESTDIR}/${MESON_INSTALL_PREFIX}/include/usbg/function"
|
|
install -m 0644 "${MESON_BUILD_ROOT}/usbg_version.h" "${DESTDIR}/${MESON_INSTALL_PREFIX}/include/usbg"
|
|
install -m 0644 "${MESON_SOURCE_ROOT}/include/usbg/usbg.h" "${DESTDIR}/${MESON_INSTALL_PREFIX}/include/usbg"
|
|
install -m 0644 "${MESON_SOURCE_ROOT}/include/usbg/function/"* "${DESTDIR}/${MESON_INSTALL_PREFIX}/include/usbg/function"
|