diff options
| author | SulfurNitride <SulfurNitride@users.noreply.github.com> | 2026-02-11 02:37:39 -0600 |
|---|---|---|
| committer | SulfurNitride <SulfurNitride@users.noreply.github.com> | 2026-02-11 02:37:39 -0600 |
| commit | 7ee008e150bc5bcf76082d726f719ee0fdfda982 (patch) | |
| tree | 27fb39be241fdb5ac2734c574de678977d1856d0 /libs/vcpkg-registry/README.md | |
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/README.md')
| -rw-r--r-- | libs/vcpkg-registry/README.md | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/libs/vcpkg-registry/README.md b/libs/vcpkg-registry/README.md new file mode 100644 index 0000000..5e49787 --- /dev/null +++ b/libs/vcpkg-registry/README.md @@ -0,0 +1,57 @@ +# ModOrganizer2 VCPKG Registry + +Custom registry for [VCPKG](https://github.com/microsoft/vcpkg/). + +## How to use? + +Add the following to your `vcpkg-configuration.json` - update the baseline and the list +of packages to your needs: + +```json +{ + "registries": [ + { + "kind": "git", + "repository": "https://github.com/ModOrganizer2/vcpkg-registry", + "baseline": "27d8adbfe9e4ce88a875be3a45fadab69869eb60", + "packages": ["mo2-cmake", "spdlog"] + } + ] +} +``` + +## Included ports + +| Port | Description | +| ------------- | -------------------- | +|`asmjit` | Fork of the official `asmjit` port to use a (very) old version of `asmjit` that is compatible with [USVFS](https://github.com/ModOrganizer2/usvfs). | +| `libloot` | Port for [libloot](https://github.com/loot/libloot), using the prebuilt release available. | +| `mo2-cmake` | CMake utilities for ModOrganizer2 components, especially plugins. | +| `mo2-dds-header` | Small port to bring the DirectXTex `DDS.h` header. | +| `mo2-libbsarch` | Port for [libbsarch](https://github.com/ModOrganizer2/libbarch), using the prebuilt release available. | +| `spdlog` | For of the official `spdlog` port to remove `fmt` dependency and force the use of `std::format` instead. | + +## Updating a dependency + +1. Manually modify `vcpkg.json` and `portfile.cmake` for the dependency you want to update +under ports: + - Update the version (and other stuff if needed) in `vcpkg.json`. + - Update (at least) the HASH of the file in `portfile.cmake`. + +2. Make a commit with the change, see format of previous commit, e.g., + + [mo2-libloot] Bump to 0.26.2. + +3. Run the following: + + ```powershell + vcpkg --x-builtin-ports-root=./ports ` + --x-builtin-registry-versions-dir=./versions x-add-version ` + --all --verbose --overwrite-version + ``` + +4. Make a commit with all changes under `versions` with message + + [registry] Update versions database. + +5. Push the change to the repository. |
