Compare commits

..
7 Commits
Author SHA1 Message Date
EnumDev e744fc6453 Rebuild package 2026-07-10 19:15:51 +03:00
EnumDev 6b4b57922b Switch to new package format 2026-06-13 19:59:16 +03:00
EnumDev 2b0217d47c Update package version to 3.18.2 2026-03-21 16:03:32 +02:00
EnumDev 549733b8b6 Update .gitignore 2026-02-24 12:44:36 +02:00
EnumDev 7f5ee31303 Prevent libfuse3 from linking to io-uring and numactl 2026-01-07 10:55:44 +02:00
EnumDev 6e9bd3d66a Update package version to 3.18.1 2025-12-28 10:43:48 +02:00
EnumDev 1187315b2e Update package version to 3.18.0 2025-12-19 14:26:22 +02:00
3 changed files with 9 additions and 4 deletions
+3
View File
@@ -0,0 +1,3 @@
# Ignore BPM archives and signatures
*.bpm
*.bpm.sig
+4 -2
View File
@@ -1,9 +1,11 @@
name: fuse3
description: The reference implementation of the Linux FUSE (Filesystem in Userspace) interface
version: 3.17.4
version: 3.18.2
revision: 3
url: https://github.com/libfuse/libfuse
license: GPL2-or-later,LGPL2.1-or-later
maintainers:
- [email protected]
architecture: any
type: source
make_depends:
@@ -14,7 +16,7 @@ downloads:
- url: https://github.com/libfuse/libfuse/releases/download/fuse-${BPM_PKG_VERSION}/fuse-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: df9e40ae927b73dc702d0bce7925c0c618af47ad0b13204fbf2be66e54d8528b
checksum: f01de85717e20adf5f98aff324acd85dd73d61a5ca3834d573dcf0bd6e54a298
split_packages:
- name: fuse3
depends:
+2 -2
View File
@@ -1,11 +1,11 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
# This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# 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
}