aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libfuse
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/libfuse')
-rw-r--r--vcpkg/ports/libfuse/portfile.cmake21
-rw-r--r--vcpkg/ports/libfuse/vcpkg.json14
2 files changed, 35 insertions, 0 deletions
diff --git a/vcpkg/ports/libfuse/portfile.cmake b/vcpkg/ports/libfuse/portfile.cmake
new file mode 100644
index 0000000..f1659b4
--- /dev/null
+++ b/vcpkg/ports/libfuse/portfile.cmake
@@ -0,0 +1,21 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO libfuse/libfuse
+ REF "fuse-${VERSION}"
+ SHA512 a39bb630f8e57a635980e153b9209a4b804569656feddb46fe8bef02c053533a6037fcc767d03efd5f8bebffed1ff55eb5f49b323ab71e8913008f994cffca77
+ HEAD_REF master
+)
+
+vcpkg_configure_meson(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -Dutils=false
+)
+
+vcpkg_install_meson()
+
+vcpkg_copy_pdbs()
+
+vcpkg_fixup_pkgconfig()
+
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
diff --git a/vcpkg/ports/libfuse/vcpkg.json b/vcpkg/ports/libfuse/vcpkg.json
new file mode 100644
index 0000000..996d0ca
--- /dev/null
+++ b/vcpkg/ports/libfuse/vcpkg.json
@@ -0,0 +1,14 @@
+{
+ "name": "libfuse",
+ "version": "3.17.3",
+ "description": "The reference implementation of the Linux FUSE (Filesystem in Userspace) interface",
+ "homepage": "https://github.com/libfuse/libfuse",
+ "license": "LGPL-2.1-only AND GPL-2.0-only",
+ "supports": "linux | freebsd",
+ "dependencies": [
+ {
+ "name": "vcpkg-tool-meson",
+ "host": true
+ }
+ ]
+}