This website requires JavaScript.
Explore
Help
Sign in
eden-emu
/
eden
Watch
24
Star
3
Fork
You've already forked eden
15
Code
Issues
138
Pull requests
60
Projects
1
Releases
Packages
Wiki
Activity
Actions
aad0ee6c58
eden
/
tools
/
cpm
/
url-hash.sh
5 lines
75 B
Bash
Raw
Normal View
History
Unescape
Escape
[cmake] refactor: CPM over vcpkg (#250) Completely replaces vcpkg with CPM for all "system" dependencies. Primarily needed for Android and Windows. Also uses my OpenSSL CI for those two platforms. In theory, improves configure and build time by a LOT and makes things much easier to manage Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/250 Reviewed-by: Lizzie <lizzie@eden-emu.dev>
2025-08-14 20:30:30 +02:00
#!/bin/sh
[tools] refactor: update/hash checking scripts, use tags for more deps Uses tags for a bunch of deps that can use them Also adds a bunmch of scripts to tools/cpm, notably for checking hashes and checking for updates. TODO: - Documentation - CI target to check hashes - Script to update the json directly (dedup) - Function to filter tags (dedup) - Weekly CI to check for updates Need to get that other CI runner up Signed-off-by: crueter <crueter@eden-emu.dev>
2025-10-03 16:56:46 -04:00
SUM
=
$(
wget -q
$1
-O -
|
sha512sum
)
[cmake] refactor: CPM over vcpkg (#250) Completely replaces vcpkg with CPM for all "system" dependencies. Primarily needed for Android and Windows. Also uses my OpenSSL CI for those two platforms. In theory, improves configure and build time by a LOT and makes things much easier to manage Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/250 Reviewed-by: Lizzie <lizzie@eden-emu.dev>
2025-08-14 20:30:30 +02:00
echo
"
$SUM
"
|
cut -d
" "
-f1
Reference in a new issue
Copy permalink