diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/libdjinterop | |
Diffstat (limited to 'vcpkg/ports/libdjinterop')
| -rw-r--r-- | vcpkg/ports/libdjinterop/portfile.cmake | 22 | ||||
| -rw-r--r-- | vcpkg/ports/libdjinterop/vcpkg.json | 20 |
2 files changed, 42 insertions, 0 deletions
diff --git a/vcpkg/ports/libdjinterop/portfile.cmake b/vcpkg/ports/libdjinterop/portfile.cmake new file mode 100644 index 0000000..cd54379 --- /dev/null +++ b/vcpkg/ports/libdjinterop/portfile.cmake @@ -0,0 +1,22 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO xsco/libdjinterop + REF "${VERSION}" + SHA512 772c0e674530e909a1882bc5afbe0e928a025589d932b67e5650a7fb91d8d9bd71f401e0c96d9486f0a5ce9a484647cbafce6213ba77b8efa620b9f5dd2085c0 + HEAD_REF master +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" + OPTIONS + -DCMAKE_DISABLE_FIND_PACKAGE_Boost=ON + ) +vcpkg_cmake_install() + +vcpkg_cmake_config_fixup(PACKAGE_NAME djinterop CONFIG_PATH lib/cmake/DjInterop) +vcpkg_fixup_pkgconfig() +vcpkg_copy_pdbs() + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") diff --git a/vcpkg/ports/libdjinterop/vcpkg.json b/vcpkg/ports/libdjinterop/vcpkg.json new file mode 100644 index 0000000..11548dc --- /dev/null +++ b/vcpkg/ports/libdjinterop/vcpkg.json @@ -0,0 +1,20 @@ +{ + "name": "libdjinterop", + "version": "0.26.1", + "description": "C++ library for access to DJ record libraries. Currently only supports Denon Engine Prime databases", + "homepage": "https://github.com/xsco/libdjinterop", + "license": "LGPL-3.0-or-later", + "supports": "!xbox", + "dependencies": [ + "sqlite3", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + }, + "zlib" + ] +} |