liburing: take ownership this port

This commit is contained in:
Danny Rawlins 2021-10-31 21:36:46 +11:00
parent 99dd16178a
commit da92ed6c8f
2 changed files with 11 additions and 8 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF38K1YzsgxGnpe/oZkg+9s1VCdDap/5t0e3Xym9SzRw3AAOSrl4+Ougk7+tT05r2HGJBAToZ0DT+tRTuYDKdIygk=
SHA256 (Pkgfile) = 8479f1fccab99f51b81fae99f9485d16a9120d93c2ffbcd33bfa6c4aedd8e864
RWSagIOpLGJF39HXnImo9GIdY6tQmdSO7FEoFMu6T8p7bbUlNAs9+q23n227Zb0nXSMIinrm13/aHnR1at3OPOiSQwYkPJftVws=
SHA256 (Pkgfile) = e09a41c83c02c1975665e3d7bf1ec2610712975f29b42b33172014ad2bcf5a33
SHA256 (.footprint) = 58cd1dc1c01334eae95f0b8fdb77ef4d127fc22658b7807e3f301b95a0a5e9d0
SHA256 (liburing-2.1.tar.gz) = f1e0500cb3934b0b61c5020c3999a973c9c93b618faff1eba75aadc95bb03e07

View File

@ -1,6 +1,6 @@
# 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
# Maintainer: Danny Rawlins, crux at romster dot me
name=liburing
version=2.1
@ -8,9 +8,12 @@ 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
cd $name-$name-$version
./configure \
--prefix=/usr \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
}