From 7ee008e150bc5bcf76082d726f719ee0fdfda982 Mon Sep 17 00:00:00 2001 From: SulfurNitride Date: Wed, 11 Feb 2026 02:37:39 -0600 Subject: 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 --- libs/vcpkg-registry/ports/pybind11/portfile.cmake | 23 +++++++++++++++++++++++ libs/vcpkg-registry/ports/pybind11/vcpkg.json | 18 ++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 libs/vcpkg-registry/ports/pybind11/portfile.cmake create mode 100644 libs/vcpkg-registry/ports/pybind11/vcpkg.json (limited to 'libs/vcpkg-registry/ports/pybind11') diff --git a/libs/vcpkg-registry/ports/pybind11/portfile.cmake b/libs/vcpkg-registry/ports/pybind11/portfile.cmake new file mode 100644 index 0000000..1913e61 --- /dev/null +++ b/libs/vcpkg-registry/ports/pybind11/portfile.cmake @@ -0,0 +1,23 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO pybind/pybind11 + REF "v${VERSION}" + SHA512 497C25B33B09A9C42F67131AB82E35D689E8CE089DD7639BE997305FF9A6D502447B79C824508C455D559E61F0186335B54DD2771D903A7C1621833930622D1A + HEAD_REF master +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" + OPTIONS + -DPYBIND11_TEST=OFF + # Disable all Python searching, Python required only for tests + -DPYBIND11_NOPYTHON=ON +) + +vcpkg_cmake_install() +vcpkg_cmake_config_fixup(CONFIG_PATH "share/cmake/pybind11") +vcpkg_fixup_pkgconfig() + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/") + +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") diff --git a/libs/vcpkg-registry/ports/pybind11/vcpkg.json b/libs/vcpkg-registry/ports/pybind11/vcpkg.json new file mode 100644 index 0000000..4cf6c77 --- /dev/null +++ b/libs/vcpkg-registry/ports/pybind11/vcpkg.json @@ -0,0 +1,18 @@ +{ + "name": "pybind11", + "version": "2.13.6", + "description": "pybind11 is a lightweight header-only library that exposes C++ types in Python and vice versa, mainly to create Python bindings of existing C++ code", + "homepage": "https://github.com/pybind/pybind11", + "license": "BSD-3-Clause", + "supports": "!(arm & windows)", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} -- cgit v1.3.1