diff options
Diffstat (limited to 'vcpkg/ports/sciplot')
| -rw-r--r-- | vcpkg/ports/sciplot/portfile.cmake | 23 | ||||
| -rw-r--r-- | vcpkg/ports/sciplot/vcpkg.json | 19 |
2 files changed, 42 insertions, 0 deletions
diff --git a/vcpkg/ports/sciplot/portfile.cmake b/vcpkg/ports/sciplot/portfile.cmake new file mode 100644 index 0000000..c2f57f0 --- /dev/null +++ b/vcpkg/ports/sciplot/portfile.cmake @@ -0,0 +1,23 @@ +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO sciplot/sciplot + REF f8d779a1110b76c6bdc77edcdc7fa798156a6917 #v0.3.1 + SHA512 fa21895c637bc42071fbd951e1c2ee450798398863626e31015f106077de4ad17dc276d77f2f1a4a7679c055c8cd8caafea513d746ac7ddbb22a16cc9382f39a + HEAD_REF vcpkg +) + +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" + OPTIONS + -DSCIPLOT_BUILD_EXAMPLES=OFF + -DSCIPLOT_BUILD_TESTS=OFF + -DSCIPLOT_BUILD_DOCS=OFF +) + +vcpkg_cmake_install() + +vcpkg_cmake_config_fixup(CONFIG_PATH share/sciplot) + +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug") + +file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/vcpkg/ports/sciplot/vcpkg.json b/vcpkg/ports/sciplot/vcpkg.json new file mode 100644 index 0000000..bbe5ec7 --- /dev/null +++ b/vcpkg/ports/sciplot/vcpkg.json @@ -0,0 +1,19 @@ +{ + "name": "sciplot", + "version": "0.3.1", + "port-version": 1, + "description": "A modern c++ scientific plotting library powered by gnuplot", + "homepage": "https://github.com/sciplot/sciplot", + "license": "MIT", + "supports": "!uwp", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} |