contrib/liburing/Pkgfile

20 lines
442 B
Plaintext
Raw Normal View History

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