blob: 5db26b09ebdf3774e2a72db99663371b8eeba40c (
plain)
1 # Description: liburing provides helpers to setup and teardown io_uring instances
2 # URL: https://github.com/axboe/liburing
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=liburing
6 version=2.3
7 release=1
8 source=(https://github.com/axboe/liburing/archive/liburing-$version/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$name-$version
12
13 ./configure \
14 --prefix=/usr \
15 --mandir=/usr/share/man
16
17 make
18 make DESTDIR=$PKG install
19 }
|