Compare commits
7
Commits
690ce14394
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e744fc6453
|
||
|
|
6b4b57922b
|
||
|
|
2b0217d47c
|
||
|
|
549733b8b6
|
||
|
|
7f5ee31303
|
||
|
|
6e9bd3d66a
|
||
|
|
1187315b2e
|
@@ -0,0 +1,3 @@
|
|||||||
|
# Ignore BPM archives and signatures
|
||||||
|
*.bpm
|
||||||
|
*.bpm.sig
|
||||||
+4
-2
@@ -1,9 +1,11 @@
|
|||||||
name: fuse3
|
name: fuse3
|
||||||
description: The reference implementation of the Linux FUSE (Filesystem in Userspace) interface
|
description: The reference implementation of the Linux FUSE (Filesystem in Userspace) interface
|
||||||
version: 3.17.4
|
version: 3.18.2
|
||||||
revision: 3
|
revision: 3
|
||||||
url: https://github.com/libfuse/libfuse
|
url: https://github.com/libfuse/libfuse
|
||||||
license: GPL2-or-later,LGPL2.1-or-later
|
license: GPL2-or-later,LGPL2.1-or-later
|
||||||
|
maintainers:
|
||||||
|
- [email protected]
|
||||||
architecture: any
|
architecture: any
|
||||||
type: source
|
type: source
|
||||||
make_depends:
|
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
|
- url: https://github.com/libfuse/libfuse/releases/download/fuse-${BPM_PKG_VERSION}/fuse-${BPM_PKG_VERSION}.tar.gz
|
||||||
extract_to: ${BPM_SOURCE}
|
extract_to: ${BPM_SOURCE}
|
||||||
extract_strip_components: 1
|
extract_strip_components: 1
|
||||||
checksum: df9e40ae927b73dc702d0bce7925c0c618af47ad0b13204fbf2be66e54d8528b
|
checksum: f01de85717e20adf5f98aff324acd85dd73d61a5ca3834d573dcf0bd6e54a298
|
||||||
split_packages:
|
split_packages:
|
||||||
- name: fuse3
|
- name: fuse3
|
||||||
depends:
|
depends:
|
||||||
@@ -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 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
|
# 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
|
# The build function is executed in the source directory
|
||||||
# This function is used to compile the source code
|
# This function is used to compile the source code
|
||||||
build() {
|
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
|
meson compile -C build
|
||||||
}
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user