This website requires JavaScript.
Explore
Help
Sign in
eden-emu
/
eden
Watch
24
Star
4
Fork
You've already forked eden
15
Code
Issues
139
Pull requests
53
Projects
1
Releases
Packages
Wiki
Activity
Actions
73a26b2353
eden
/
tools
/
url-hash.sh
5 lines
77 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
[ci, tools] shellcheck-ed * now license-header.sh is POSIX compliant * update-icons now checks for dependencies the correct way * add --help to license-header * nuke reset-submodules * add missing shebang to .ci/windows/package.sh * Below the error/warnings/infos from shellcheck: -- SC2068 (error): Double quote array expansions to avoid re-splitting elements. -- SC3054 (warning): In POSIX sh, array references are undefined. -- SC2155 (warning): Declare and assign separately to avoid masking return values. -- SC2046 (warning): Quote this to prevent word splitting. -- SC2236 (style): Use -n instead of ! -z. -- SC2006 (style): Use $(...) notation instead of legacy backticks `...`. -- SC2001 (style): See if you can use ${variable//search/replace} instead. -- SC2086 (info): Double quote to prevent globbing and word splitting. -- SC2185 (info): Some finds don't have a default path. Specify '.' explicitly. Signed-off-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
2025-09-08 23:24:36 -03: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