From ccc722b7ed330198d82a3cf28ead76d6d107a70a Mon Sep 17 00:00:00 2001 From: davidovski Date: Mon, 6 Jun 2022 21:25:48 +0000 Subject: added java --- repo/hidapi/hidapi.xibuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 repo/hidapi/hidapi.xibuild (limited to 'repo/hidapi/hidapi.xibuild') 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 +} + -- cgit v1.2.1