summaryrefslogtreecommitdiff
path: root/repo/hidapi/hidapi.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/hidapi/hidapi.xibuild')
-rw-r--r--repo/hidapi/hidapi.xibuild26
1 files changed, 26 insertions, 0 deletions
diff --git a/repo/hidapi/hidapi.xibuild b/repo/hidapi/hidapi.xibuild
new file mode 100644
index 0000000..0224d4f
--- /dev/null
+++ b/repo/hidapi/hidapi.xibuild
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+NAME="hidapi"
+DESC="Simple library for communicating with USB and Bluetooth HID devices"
+
+MAKEDEPS=" cmake eudev libusb linux-headers"
+
+PKG_VER=0.11.2
+SOURCE="https://github.com/libusb/hidapi/archive/hidapi-$PKG_VER/hidapi-$PKG_VER.tar.gz"
+
+ADDITIONAL="
+autoconf-270.patch
+"
+
+build() {
+ cmake -B build \
+ -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$PKG_DEST" cmake --install build
+}
+