diff options
| author | Victor Romero <romerosanchezv@gmail.com> | 2019-04-24 11:44:38 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-24 11:44:38 -0700 |
| commit | 8996d0ce0a535d6720b388ce97395a3cd5715ab3 (patch) | |
| tree | 738f01e9a6c1801d11cf80a6a749586e9d80ecbd | |
| parent | 243a12456c6a6e1afc8075a10277da6117760309 (diff) | |
| download | vcpkg-8996d0ce0a535d6720b388ce97395a3cd5715ab3.tar.gz vcpkg-8996d0ce0a535d6720b388ce97395a3cd5715ab3.zip | |
[ade] Add port (taken from PR 5169 by @cenit) (#6129)
* [ade] Add port (taken from PR 5169 by @cenit)
* [ade] Fix for non-Windows
* [ade] Fix indentation
| -rw-r--r-- | ports/ade/CONTROL | 3 | ||||
| -rw-r--r-- | ports/ade/portfile.cmake | 31 |
2 files changed, 34 insertions, 0 deletions
diff --git a/ports/ade/CONTROL b/ports/ade/CONTROL new file mode 100644 index 000000000..ccce7f1db --- /dev/null +++ b/ports/ade/CONTROL @@ -0,0 +1,3 @@ +Source: ade
+Version: 0.1.1d
+Description: ADE Framework is a graph construction, manipulation, and processing framework. ADE Framework is suitable for organizing data flow processing and execution.
\ No newline at end of file diff --git a/ports/ade/portfile.cmake b/ports/ade/portfile.cmake new file mode 100644 index 000000000..95d001828 --- /dev/null +++ b/ports/ade/portfile.cmake @@ -0,0 +1,31 @@ +include(vcpkg_common_functions)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO opencv/ade
+ REF v0.1.1d
+ SHA512 c493cb57e59ba859ca0cbf5d48bae4233f22104dfb4a96864d07e9422bb700c27af2d53a602f2230d68b7bcc598920d0652c3d9fdf8fad94a7e5b4d21664a44e
+ HEAD_REF master
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+ OPTIONS_DEBUG
+ -DCMAKE_DEBUG_POSTFIX=d
+)
+
+vcpkg_install_cmake()
+
+file(COPY ${CURRENT_PACKAGES_DIR}/debug/share/ade/adeTargets-debug.cmake DESTINATION ${CURRENT_PACKAGES_DIR}/share/ade/)
+
+file(READ ${CURRENT_PACKAGES_DIR}/share/ade/adeTargets-debug.cmake ADE_TARGET_DEBUG)
+string(REPLACE "/lib/"
+ "/debug/lib/" ADE_TARGET_DEBUG "${ADE_TARGET_DEBUG}")
+file(WRITE ${CURRENT_PACKAGES_DIR}/share/ade/adeTargets-debug.cmake "${ADE_TARGET_DEBUG}")
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
+
+# Handle copyright
+file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/ade RENAME copyright)
|
