diff options
| author | Park DongHa <dong-ha-park@linecorp.com> | 2021-02-25 06:54:43 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-24 13:54:43 -0800 |
| commit | 365b3b6df68e4bae827acadb18da1487063c5882 (patch) | |
| tree | 6cc1b91ba91a1309128bd1c65ae252003bb0d208 | |
| parent | 8c0cac7fcd495d56bcfcfccf0c7c21457f264296 (diff) | |
| download | vcpkg-365b3b6df68e4bae827acadb18da1487063c5882.tar.gz vcpkg-365b3b6df68e4bae827acadb18da1487063c5882.zip | |
[psimd] add a new port (#16339)
* [psimd] create a new port
* [psimd] update baseline and port SHA
* [psimd] update port SHA
| -rw-r--r-- | ports/psimd/portfile.cmake | 15 | ||||
| -rw-r--r-- | ports/psimd/vcpkg.json | 6 | ||||
| -rw-r--r-- | versions/baseline.json | 4 | ||||
| -rw-r--r-- | versions/p-/psimd.json | 9 |
4 files changed, 34 insertions, 0 deletions
diff --git a/ports/psimd/portfile.cmake b/ports/psimd/portfile.cmake new file mode 100644 index 000000000..f68dacb83 --- /dev/null +++ b/ports/psimd/portfile.cmake @@ -0,0 +1,15 @@ + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO Maratyszcza/psimd + REF 072586a71b55b7f8c584153d223e95687148a900 + SHA512 a18faea093423dd9fe19ece8b228e011dccce0a2a22222f777ea19b023a13173966d4a8aea01147e8fc58de5d39cffcedeb2221a1572ae52bd5aba1295f86a94 +) +vcpkg_configure_cmake( + SOURCE_PATH ${SOURCE_PATH} + PREFER_NINJA +) +vcpkg_install_cmake() + +file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug) diff --git a/ports/psimd/vcpkg.json b/ports/psimd/vcpkg.json new file mode 100644 index 000000000..49fc6e93d --- /dev/null +++ b/ports/psimd/vcpkg.json @@ -0,0 +1,6 @@ +{ + "name": "psimd", + "version-string": "2021-02-21", + "description": "Portable 128-bit SIMD intrinsics", + "homepage": "https://github.com/Maratyszcza/psimd" +} diff --git a/versions/baseline.json b/versions/baseline.json index f4d20edd5..d8ff5d063 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -4756,6 +4756,10 @@ "baseline": "1.0.0", "port-version": 0 }, + "psimd": { + "baseline": "2021-02-21", + "port-version": 0 + }, "ptex": { "baseline": "2.3.2", "port-version": 2 diff --git a/versions/p-/psimd.json b/versions/p-/psimd.json new file mode 100644 index 000000000..61f3e7034 --- /dev/null +++ b/versions/p-/psimd.json @@ -0,0 +1,9 @@ +{ + "versions": [ + { + "git-tree": "d96e70295af788d6abe87bdad2a48d80f24ecfb5", + "version-string": "2021-02-21", + "port-version": 0 + } + ] +} |
