diff options
| author | Force Charlie <charlieio@outlook.com> | 2017-12-24 00:14:20 +0800 |
|---|---|---|
| committer | Force Charlie <charlieio@outlook.com> | 2017-12-24 00:14:20 +0800 |
| commit | 44a1023f047bb518659e326c82650c7d4bea0d0b (patch) | |
| tree | 569178280061427f8c7ecff27a70be3315c8263e | |
| parent | 544e99310d9f183b4add85c360de2df65ba64598 (diff) | |
| download | vcpkg-44a1023f047bb518659e326c82650c7d4bea0d0b.tar.gz vcpkg-44a1023f047bb518659e326c82650c7d4bea0d0b.zip | |
[libgit2] Initial port.
| -rw-r--r-- | ports/libgit2/CONTROL | 3 | ||||
| -rw-r--r-- | ports/libgit2/portfile.cmake | 30 |
2 files changed, 33 insertions, 0 deletions
diff --git a/ports/libgit2/CONTROL b/ports/libgit2/CONTROL new file mode 100644 index 000000000..779bf10c9 --- /dev/null +++ b/ports/libgit2/CONTROL @@ -0,0 +1,3 @@ +Source: libgit2
+Version: 0.26.0
+Description: Git linkable library
diff --git a/ports/libgit2/portfile.cmake b/ports/libgit2/portfile.cmake new file mode 100644 index 000000000..e624e37eb --- /dev/null +++ b/ports/libgit2/portfile.cmake @@ -0,0 +1,30 @@ +# libgit2 uses winapi functions not available in WindowsStore
+if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL WindowsStore)
+ message(FATAL_ERROR "Error: UWP builds are not supported.")
+endif()
+
+include(vcpkg_common_functions)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO libgit2/libgit2
+ REF v0.26.0
+ SHA512 b6e51f2216c7c23f352572b780ea1325a25a517396709f036bb573295c2bd02aa505ba616846ac7e07863e99e640e7d47fefc5727478a257b283da99060ee47c
+ HEAD_REF master)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+ OPTIONS
+ -DBUILD_CLAR=OFF
+ OPTIONS_DEBUG
+ -DBUILD_CLAR=OFF
+)
+
+
+vcpkg_install_cmake()
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+
+file(COPY ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/libgit2)
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/libgit2/COPYING ${CURRENT_PACKAGES_DIR}/share/libgit2/copyright)
|
