summaryrefslogtreecommitdiff
path: root/repo/liburing/liburing.xibuild
blob: d7a6fd826e886e281dfde91eace9288197fe8bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

NAME="liburing"
DESC="Linux kernel io_uring access library"

MAKEDEPS="linux-headers"

PKG_VER=2.2
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
}