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/qcustomplot/portfile.cmake | |
Diffstat (limited to 'vcpkg/ports/qcustomplot/portfile.cmake')
| -rw-r--r-- | vcpkg/ports/qcustomplot/portfile.cmake | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/vcpkg/ports/qcustomplot/portfile.cmake b/vcpkg/ports/qcustomplot/portfile.cmake new file mode 100644 index 0000000..f0038d0 --- /dev/null +++ b/vcpkg/ports/qcustomplot/portfile.cmake @@ -0,0 +1,34 @@ +vcpkg_download_distfile(ARCHIVE
+ URLS "https://www.qcustomplot.com/release/${VERSION}/QCustomPlot.tar.gz"
+ FILENAME "QCustomPlot-${VERSION}.tar.gz"
+ SHA512 2e49a9b3f7ab03bcd580e5f3c3ae0d5e8c57d3ccce0ceed9862cde7ea23e2f3672a963af988be60e504cb5aa50bc462e4b28acf577eae41cc6fea2802642dc19
+)
+vcpkg_extract_source_archive(
+ SOURCE_PATH
+ ARCHIVE "${ARCHIVE}"
+)
+
+vcpkg_download_distfile(ARCHIVE
+ URLS "https://www.qcustomplot.com/release/${VERSION}/QCustomPlot-sharedlib.tar.gz"
+ FILENAME "QCustomPlot-sharedlib-${VERSION}.tar.gz"
+ SHA512 c661e4a835066fee92b254fbd7b825dbd5c58973189ff2099a01308cb81fe6bf3bac1456f5da91f01c6265f8f548f61b57e237d00a9b5c2c94acf1a024baa18e
+)
+vcpkg_extract_source_archive(
+ SharedLib_SOURCE_PATH
+ ARCHIVE "${ARCHIVE}"
+ PATCHES
+ config.patch
+)
+file(RENAME "${SharedLib_SOURCE_PATH}" "${SOURCE_PATH}/qcustomplot-sharedlib")
+
+vcpkg_qmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}/qcustomplot-sharedlib/sharedlib-compilation/sharedlib-compilation.pro"
+ QMAKE_OPTIONS
+ "${OSX_OPTIONS}"
+)
+vcpkg_qmake_install()
+
+vcpkg_copy_pdbs()
+
+# Handle copyright
+configure_file(${SOURCE_PATH}/GPL.txt ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)
|