From da92ed6c8f6d96c02d7304041c588bb648115093 Mon Sep 17 00:00:00 2001 From: Danny Rawlins Date: Sun, 31 Oct 2021 21:36:46 +1100 Subject: [PATCH] liburing: take ownership this port --- liburing/.signature | 4 ++-- liburing/Pkgfile | 15 +++++++++------ 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/liburing/.signature b/liburing/.signature index 590dfbdd6..453113915 100644 --- a/liburing/.signature +++ b/liburing/.signature @@ -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 diff --git a/liburing/Pkgfile b/liburing/Pkgfile index f2d00ff77..98f37c1e9 100644 --- a/liburing/Pkgfile +++ b/liburing/Pkgfile @@ -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 }