diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-12-27 14:19:02 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-12-27 14:19:02 -0800 |
| commit | 1eb02ad9a4410977b203fd54ceed837210b08ba6 (patch) | |
| tree | 272946ca0fa3acb9eab7647b612f78e2ca1372c6 | |
| parent | dad9c645acb90e5d55f29473b979ea6a36ed88b3 (diff) | |
| parent | 04b62c7be9868ecd180c29a127e3be4072e25a81 (diff) | |
| download | vcpkg-1eb02ad9a4410977b203fd54ceed837210b08ba6.tar.gz vcpkg-1eb02ad9a4410977b203fd54ceed837210b08ba6.zip | |
Merge branch 'vlj-master'
| -rw-r--r-- | ports/gli/CONTROL | 3 | ||||
| -rw-r--r-- | ports/gli/portfile.cmake | 20 |
2 files changed, 23 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..c0854909f --- /dev/null +++ b/ports/gli/portfile.cmake @@ -0,0 +1,20 @@ +#header-only library +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) |
