# Description: Library providing helpers for the Linux kernel io_uring support
# URL: https://github.com/axboe/liburing
# Maintainer: Tim Biermann, tbier at posteo dot de

name=liburing
version=2.14
release=1
source=(https://github.com/axboe/liburing/archive/liburing-$version/$name-$version.tar.gz)

build() {
  cd $name-$name-$version

  ./configure \
    --prefix=/usr \
    --mandir=/usr/share/man

  make
  make DESTDIR=$PKG install
}
