Skip to content

Commit a5a2e12

Browse files
committed
fix: vcpkg hash mismatch
1 parent 741a865 commit a5a2e12

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed

duckdb

Submodule duckdb updated 1439 files
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
vcpkg_download_distfile(ARCHIVE
2+
URLS "https://github.com/Nicoshev/rapidhash/archive/refs/tags/rapidhash_v${VERSION}.tar.gz"
3+
FILENAME "rapidhash-v${VERSION}.tar.gz"
4+
SHA512 2f389411f8cffa91b02a6b91baf00ba11a888b312c9b93885aef783628f0d383ca83a2ed85a9f4e37c62ca8464620c582b3d5a581609c7eba619cfa4f9050b53
5+
)
6+
7+
vcpkg_extract_source_archive(SOURCE_PATH
8+
ARCHIVE "${ARCHIVE}"
9+
)
10+
11+
file(COPY "${SOURCE_PATH}/rapidhash.h" DESTINATION ${CURRENT_PACKAGES_DIR}/include)
12+
13+
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)

vcpkg-overlay/rapidhash/vcpkg.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "rapidhash",
3+
"version": "3",
4+
"description": "Very fast, high quality, platform independent hashing algorithm.",
5+
"homepage": "https://github.com/Nicoshev/rapidhash",
6+
"license": "BSD-2-Clause"
7+
}

vcpkg.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
],
77
"vcpkg-configuration": {
88
"overlay-ports": [
9-
"./extension-ci-tools/vcpkg_ports"
9+
"./extension-ci-tools/vcpkg_ports",
10+
"./vcpkg-overlay"
1011
]
1112
}
1213
}

0 commit comments

Comments
 (0)