diff --git a/pkg.info b/pkg.info index 599d5fa..36dc30d 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,7 @@ name: fuse3 description: The reference implementation of the Linux FUSE (Filesystem in Userspace) interface version: 3.18.1 -revision: 1 +revision: 2 url: https://github.com/libfuse/libfuse license: GPL2-or-later,LGPL2.1-or-later architecture: any diff --git a/source.sh b/source.sh index f3a64f0..83926f3 100644 --- a/source.sh +++ b/source.sh @@ -5,7 +5,7 @@ # The build function is executed in the source directory # This function is used to compile the source code build() { - meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release build + meson setup --prefix=/usr --libdir=/usr/lib -Denable-io-uring=false build meson compile -C build }