diff options
author | davidovski <david@davidovski.xyz> | 2022-06-06 21:25:48 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-06 21:25:48 +0000 |
commit | ccc722b7ed330198d82a3cf28ead76d6d107a70a (patch) | |
tree | 7611b3cc4f3ca681524fa28b174a0253eb802e0e /repo/hidapi/hidapi.xibuild | |
parent | 9ee32689f0b57b9e1de6d22c84ce8e3700b6122b (diff) |
added java
Diffstat (limited to 'repo/hidapi/hidapi.xibuild')
-rw-r--r-- | repo/hidapi/hidapi.xibuild | 26 |
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 +} + |