aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHan Hu <huhan19880715@163.com>2017-04-08 01:02:59 +0800
committerHan Hu <huhan19880715@163.com>2017-04-08 01:02:59 +0800
commitdae29cba409564c5c655495c37c76e41ffee9815 (patch)
tree3fa61368f858e4a4d24d37d89679ad7179c5cc30
parent2e7896e89e7f0cb15b30b7d087f8001c57b3220a (diff)
downloadvcpkg-dae29cba409564c5c655495c37c76e41ffee9815.tar.gz
vcpkg-dae29cba409564c5c655495c37c76e41ffee9815.zip
add geographiclib port
-rw-r--r--ports/geographiclib/CONTROL3
-rw-r--r--ports/geographiclib/portfile.cmake53
2 files changed, 56 insertions, 0 deletions
diff --git a/ports/geographiclib/CONTROL b/ports/geographiclib/CONTROL
new file mode 100644
index 000000000..83f801537
--- /dev/null
+++ b/ports/geographiclib/CONTROL
@@ -0,0 +1,3 @@
+Source: geographiclib
+Version: 1.47-patch1
+Description: geographiclib
diff --git a/ports/geographiclib/portfile.cmake b/ports/geographiclib/portfile.cmake
new file mode 100644
index 000000000..90c99261c
--- /dev/null
+++ b/ports/geographiclib/portfile.cmake
@@ -0,0 +1,53 @@
+# Common Ambient Variables:
+# CURRENT_BUILDTREES_DIR = ${VCPKG_ROOT_DIR}\buildtrees\${PORT}
+# CURRENT_PACKAGES_DIR = ${VCPKG_ROOT_DIR}\packages\${PORT}_${TARGET_TRIPLET}
+# CURRENT_PORT DIR = ${VCPKG_ROOT_DIR}\ports\${PORT}
+# PORT = current port name (zlib, etc)
+# TARGET_TRIPLET = current triplet (x86-windows, x64-windows-static, etc)
+# VCPKG_CRT_LINKAGE = C runtime linkage type (static, dynamic)
+# VCPKG_LIBRARY_LINKAGE = target library linkage type (static, dynamic)
+# VCPKG_ROOT_DIR = <C:\path\to\current\vcpkg>
+# VCPKG_TARGET_ARCHITECTURE = target architecture (x64, x86, arm)
+#
+
+include(vcpkg_common_functions)
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/geographiclib-1.47)
+vcpkg_download_distfile(ARCHIVE
+ URLS "https://jaist.dl.sourceforge.net/project/geographiclib/distrib/GeographicLib-1.47-patch1.zip"
+ FILENAME "geographiclib-1.47-latch1.zip"
+ SHA512 d8fdfd7ae093057ec1a4ab922457fe71a3fb9975df5b673c276d62a0e9c4f212dc63652830b9d89e3890bc96aafd335992943cf6a1bce8260acf932d1eb7abfd
+)
+vcpkg_extract_source_archive(${ARCHIVE})
+
+if(VCPKG_LIBRARY_LINKAGE STREQUAL dynamic)
+ vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ OPTIONS -DGEOGRAPHICLIB_LIB_TYPE=SHARED
+ PREFER_NINJA # Disable this option if project cannot be built with Ninja
+ # OPTIONS -DUSE_THIS_IN_ALL_BUILDS=1 -DUSE_THIS_TOO=2
+ # OPTIONS_RELEASE -DOPTIMIZE=1
+ # OPTIONS_DEBUG -DDEBUGGABLE=1
+ )
+else()
+ vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ OPTIONS -DGEOGRAPHICLIB_LIB_TYPE=STATIC
+ PREFER_NINJA # Disable this option if project cannot be built with Ninja
+ # OPTIONS -DUSE_THIS_IN_ALL_BUILDS=1 -DUSE_THIS_TOO=2
+ # OPTIONS_RELEASE -DOPTIMIZE=1
+ # OPTIONS_DEBUG -DDEBUGGABLE=1
+ )
+endif()
+
+vcpkg_install_cmake()
+file(RENAME ${CURRENT_PACKAGES_DIR}/cmake ${CURRENT_PACKAGES_DIR}/share/geographiclib)
+
+file(COPY ${CURRENT_BUILDTREES_DIR}/src/GeographicLib-1.47/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/geographiclib)
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/geographiclib/LICENSE.txt ${CURRENT_PACKAGES_DIR}/share/geographiclib/copyright)
+
+file(GLOB EXE_FILES "${CURRENT_PACKAGES_DIR}/bin/*.exe" "${CURRENT_PACKAGES_DIR}/debug/bin/*.exe")
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/cmake)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
+file(REMOVE_RECURSE ${EXE_FILES})