forked from ports/contrib
20 lines
442 B
Plaintext
20 lines
442 B
Plaintext
# Description: liburing provides helpers to setup and teardown io_uring instances
|
|
# URL: https://github.com/axboe/liburing
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
name=liburing
|
|
version=2.4
|
|
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
|
|
}
|