aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Hümmer <Robert.Huem@gmail.com>2019-05-07 00:52:14 +0200
committerVictor Romero <romerosanchezv@gmail.com>2019-05-06 15:52:14 -0700
commitce6dbe70cb0232cc34c56d0416b9d7443a57d6e3 (patch)
tree6718d0275fa5cb598c121444ae9361c626327952
parent4256a7cd07e99d5023c5b38cceacce1bfcb32bcd (diff)
downloadvcpkg-ce6dbe70cb0232cc34c56d0416b9d7443a57d6e3.tar.gz
vcpkg-ce6dbe70cb0232cc34c56d0416b9d7443a57d6e3.zip
[libnoise] Add new port libnoise (#6319)
* [libnoise] Add new port libnoise * refactor(libnoise): removed unnecessary comments
-rw-r--r--ports/libnoise/CONTROL3
-rw-r--r--ports/libnoise/portfile.cmake29
2 files changed, 32 insertions, 0 deletions
diff --git a/ports/libnoise/CONTROL b/ports/libnoise/CONTROL
new file mode 100644
index 000000000..53009a450
--- /dev/null
+++ b/ports/libnoise/CONTROL
@@ -0,0 +1,3 @@
+Source: libnoise
+Version: 1.0.0
+Description: A general-purpose library that generates three-dimensional coherent noise. Useful for terrain generation and procedural texture generation. Uses a broad number of techniques (Perlin noise, ridged multifractal, etc.) and combinations of those techniques.
diff --git a/ports/libnoise/portfile.cmake b/ports/libnoise/portfile.cmake
new file mode 100644
index 000000000..28465f585
--- /dev/null
+++ b/ports/libnoise/portfile.cmake
@@ -0,0 +1,29 @@
+include(vcpkg_common_functions)
+
+set( LIBNOISE_VERSION "1.0.0" )
+set( LIBNOISE_COMMIT "d7e68784a2b24c632868506780eba336ede74ecd" )
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO RobertHue/libnoise
+ REF ${LIBNOISE_COMMIT}
+ SHA512 8c4d654acb4ae3d90ee62ebdf0447f876022dcb887ebfad88f39b09d29183a58e6fc1b1f1d03edff804975c8befcc6eda33c44797495285aae338c2e869a14d7
+ HEAD_REF master
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+)
+
+vcpkg_install_cmake()
+
+# Include files should not be duplicated into the /debug/include directory.
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+
+# Handle copyright
+file(COPY ${SOURCE_PATH}/LICENSE.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/libnoise)
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/libnoise/LICENSE.md ${CURRENT_PACKAGES_DIR}/share/libnoise/copyright)
+
+# Post-build test for cmake libraries
+vcpkg_test_cmake(PACKAGE_NAME libnoise) \ No newline at end of file