summaryrefslogtreecommitdiff
path: root/repo/liburing/liburing.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
committerdavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
commitd2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 (patch)
tree684a17eebf446aa1adab1097616f1882c8d51568 /repo/liburing/liburing.xibuild
parentd1fc3393cca72e8e432f827f7624e38734fad6dc (diff)
added deps for qemu
Diffstat (limited to 'repo/liburing/liburing.xibuild')
-rw-r--r--repo/liburing/liburing.xibuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/liburing/liburing.xibuild b/repo/liburing/liburing.xibuild
new file mode 100644
index 0000000..16dea1e
--- /dev/null
+++ b/repo/liburing/liburing.xibuild
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+NAME="liburing"
+DESC="Linux kernel io_uring access library"
+
+MAKEDEPS="linux-headers"
+
+PKG_VER=2.1
+SOURCE="https://git.kernel.dk/cgit/liburing/snapshot/liburing-$PKG_VER.tar.gz"
+
+build() {
+ ./configure \
+ --prefix=/usr \
+ --mandir=/usr/share/man
+}
+
+check() {
+ make test
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+}
+