aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authorJulian Scholle <Julian.scholle@googlemail.com>2021-04-01 19:44:04 +0200
committerGitHub <noreply@github.com>2021-04-01 10:44:04 -0700
commitcd7f976e99c2b2ee4c6d2ac55e6e6ed206c4865c (patch)
tree188ad2cb6d1e95a92ed53345e8117c8f8031ab4d /ports
parentfecd9f144977ec6d327e334bb67d54c44e992741 (diff)
downloadvcpkg-cd7f976e99c2b2ee4c6d2ac55e6e6ed206c4865c.tar.gz
vcpkg-cd7f976e99c2b2ee4c6d2ac55e6e6ed206c4865c.zip
[sciplot] Add new port (#15913)
* add sciplot port * port should also work on all platforms, as long as gnuplot can be installed * add version information to vcpkg * disable uwp in build pipeline and fix version SHA * uwp not supported * fix version sha * Use vcpkg.json and bump version to 0.2.2 * add sciplot version * [sciplot] Remove inaccessible 0.1 port Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Diffstat (limited to 'ports')
-rw-r--r--ports/sciplot/portfile.cmake22
-rw-r--r--ports/sciplot/vcpkg.json7
2 files changed, 29 insertions, 0 deletions
diff --git a/ports/sciplot/portfile.cmake b/ports/sciplot/portfile.cmake
new file mode 100644
index 000000000..c6a369eb6
--- /dev/null
+++ b/ports/sciplot/portfile.cmake
@@ -0,0 +1,22 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO sciplot/sciplot
+ REF v0.2.2
+ SHA512 2e7646e0fd52643bf86c09466d921d7b6a53349cd113e15177c3389654e0489df1d56f5fdcad7fc73834e632fff0a303d1366688ac7bb11937d49babd0742a7f
+ HEAD_REF vcpkg
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+)
+
+vcpkg_install_cmake()
+
+vcpkg_fixup_cmake_targets(CONFIG_PATH share/sciplot)
+
+vcpkg_copy_pdbs()
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug)
+
+file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
diff --git a/ports/sciplot/vcpkg.json b/ports/sciplot/vcpkg.json
new file mode 100644
index 000000000..0fdf43a09
--- /dev/null
+++ b/ports/sciplot/vcpkg.json
@@ -0,0 +1,7 @@
+{
+ "name": "sciplot",
+ "version": "0.2.2",
+ "description": "A modern c++ scientific plotting library powered by gnuplot",
+ "homepage": "https://github.com/sciplot/sciplot",
+ "supports": "!uwp"
+}