diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-12-27 14:15:12 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-12-27 14:15:12 -0800 |
| commit | 08572a1c600a2eccb0f67df8b94273edabc8c5c8 (patch) | |
| tree | 44bed86e7b7585fa8935106ca1f0deca235edf45 | |
| parent | dad9c645acb90e5d55f29473b979ea6a36ed88b3 (diff) | |
| parent | daeab46090dba4592b776d2e829ad19b9e6b2bff (diff) | |
| download | vcpkg-08572a1c600a2eccb0f67df8b94273edabc8c5c8.tar.gz vcpkg-08572a1c600a2eccb0f67df8b94273edabc8c5c8.zip | |
Merge branch 'master' of https://github.com/vlj/vcpkg into vlj-master
| -rw-r--r-- | ports/gli/CONTROL | 3 | ||||
| -rw-r--r-- | ports/gli/portfile.cmake | 21 |
2 files changed, 24 insertions, 0 deletions
diff --git a/ports/gli/CONTROL b/ports/gli/CONTROL new file mode 100644 index 000000000..8d89bc2d1 --- /dev/null +++ b/ports/gli/CONTROL @@ -0,0 +1,3 @@ +Source: gli +Version: 0.8.2 +Description: OpenGL Image (GLI) https://gli.g-truc.net diff --git a/ports/gli/portfile.cmake b/ports/gli/portfile.cmake new file mode 100644 index 000000000..60ab1e409 --- /dev/null +++ b/ports/gli/portfile.cmake @@ -0,0 +1,21 @@ +#Header only + +include(vcpkg_common_functions) +set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/gli-0.8.2.0) +vcpkg_download_distfile(ARCHIVE + URLS "https://github.com/g-truc/gli/archive/0.8.2.0.tar.gz" + FILENAME "0.8.2.0.tar.gz" + SHA512 c254a4e1497d0add985e4a882c552db99c512cc0e9cc72145d51a6e7deada817d624d9818099a47136a8a3ef1223a26a34e355e3c713166f0bb062e506059834 +) +vcpkg_extract_source_archive(${ARCHIVE}) + +# Remove glm/CMakeLists.txt +file(REMOVE ${SOURCE_PATH}/glm/CMakeLists.txt) + +# Put the license file where vcpkg expects it +file(COPY ${SOURCE_PATH}/external/glm/copying.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/gli/) +file(RENAME ${CURRENT_PACKAGES_DIR}/share/gli/copying.txt ${CURRENT_PACKAGES_DIR}/share/gli/copyright) + +# Copy the glm header files +file(GLOB HEADER_FILES ${SOURCE_PATH}/gli/*) +file(COPY ${HEADER_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/include/gli) |
