aboutsummaryrefslogtreecommitdiff
path: root/libs/vcpkg-registry/ports/libloot
diff options
context:
space:
mode:
authorSulfurNitride <SulfurNitride@users.noreply.github.com>2026-02-11 02:37:39 -0600
committerSulfurNitride <SulfurNitride@users.noreply.github.com>2026-02-11 02:37:39 -0600
commit7ee008e150bc5bcf76082d726f719ee0fdfda982 (patch)
tree27fb39be241fdb5ac2734c574de678977d1856d0 /libs/vcpkg-registry/ports/libloot
Fluorine Manager: full Linux port of Mod Organizer 2
Complete native Linux port with FUSE-based virtual filesystem, Proton/umu-run integration, and Flatpak packaging. Key features: - FUSE VFS replacing Windows USVFS (in-process + standalone helper for Flatpak) - Proton/GE-Proton/umu-run launcher with env var forwarding - Flatpak support (sandbox-aware VFS, NXM handler, umu-run) - Wine prefix management UI - Case-insensitive path resolution for Linux filesystems - QSettings-safe INI handling (avoids Bethesda INI corruption) - Portable instance support with auto-generated launcher scripts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'libs/vcpkg-registry/ports/libloot')
-rw-r--r--libs/vcpkg-registry/ports/libloot/portfile.cmake30
-rw-r--r--libs/vcpkg-registry/ports/libloot/vcpkg.json14
2 files changed, 44 insertions, 0 deletions
diff --git a/libs/vcpkg-registry/ports/libloot/portfile.cmake b/libs/vcpkg-registry/ports/libloot/portfile.cmake
new file mode 100644
index 0000000..9e7fc4d
--- /dev/null
+++ b/libs/vcpkg-registry/ports/libloot/portfile.cmake
@@ -0,0 +1,30 @@
+set(VCPKG_POLICY_DLLS_IN_STATIC_LIBRARY enabled)
+
+vcpkg_download_distfile(ARCHIVE
+ URLS "https://github.com/loot/libloot/releases/download/${VERSION}/libloot-${VERSION}-win64.7z"
+ FILENAME "libloot-${VERSION}-win64.7z"
+ SHA512 29D3EBC405B875022F9957F71D2FCB7234AD3386CBFEF3D98629312F695C042BB1E43E8F57A9132B7070D8493DC406AF766D7FC2FAE59C14C4E98F1DBC87BFBB
+)
+
+vcpkg_extract_source_archive_ex(
+ OUT_SOURCE_PATH SOURCE_PATH
+ ARCHIVE ${ARCHIVE}
+)
+
+vcpkg_download_distfile(LICENSE
+ URLS "https://raw.githubusercontent.com/loot/libloot/master/LICENSE"
+ FILENAME "copyright"
+ SHA512 7633623B66B5E686BB94DD96A7CDB5A7E5EE00E87004FAB416A5610D59C62BADAF512A2E26E34E2455B7ED6B76690D2CD47464836D7D85D78B51D50F7E933D5C
+)
+
+file(INSTALL ${SOURCE_PATH}/include DESTINATION ${CURRENT_PACKAGES_DIR})
+file(INSTALL ${SOURCE_PATH}/bin DESTINATION ${CURRENT_PACKAGES_DIR})
+file(INSTALL ${SOURCE_PATH}/lib DESTINATION ${CURRENT_PACKAGES_DIR})
+
+file(INSTALL ${SOURCE_PATH}/bin DESTINATION ${CURRENT_PACKAGES_DIR}/debug)
+file(INSTALL ${SOURCE_PATH}/lib DESTINATION ${CURRENT_PACKAGES_DIR}/debug)
+
+vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/${PORT}")
+vcpkg_install_copyright(FILE_LIST "${LICENSE}")
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
diff --git a/libs/vcpkg-registry/ports/libloot/vcpkg.json b/libs/vcpkg-registry/ports/libloot/vcpkg.json
new file mode 100644
index 0000000..57c1225
--- /dev/null
+++ b/libs/vcpkg-registry/ports/libloot/vcpkg.json
@@ -0,0 +1,14 @@
+{
+ "name": "libloot",
+ "version": "0.26.3",
+ "description": "A C++ library for accessing LOOT's metadata and sorting functionality.",
+ "homepage": "https://github.com/loot/libloot/",
+ "license": "GPL-3.0",
+ "supports": "!uwp",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}