2021-10-31 12:28:17 +11:00
|
|
|
# Description: liburing provides helpers to setup and teardown io_uring instances
|
2023-11-09 19:19:52 +01:00
|
|
|
# URL: https://git.kernel.dk/cgit/liburing
|
2023-07-07 19:58:52 +02:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2021-10-31 12:28:17 +11:00
|
|
|
|
|
|
|
name=liburing
|
2023-11-09 19:19:52 +01:00
|
|
|
version=2.5
|
2021-10-31 12:28:17 +11:00
|
|
|
release=1
|
2023-11-09 19:19:52 +01:00
|
|
|
source=(https://git.kernel.dk/cgit/liburing/snapshot/liburing-$version.tar.bz2)
|
2021-10-31 12:28:17 +11:00
|
|
|
|
|
|
|
build() {
|
2023-11-09 19:19:52 +01:00
|
|
|
cd $name-$version
|
2021-10-31 21:36:46 +11:00
|
|
|
|
2023-07-07 19:58:52 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--mandir=/usr/share/man
|
2021-10-31 21:36:46 +11:00
|
|
|
|
2023-07-07 19:58:52 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2021-10-31 12:28:17 +11:00
|
|
|
}
|