mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
Ports/ccache: Update ccache to version 4.6.3
This commit is contained in:
parent
7c93eabffe
commit
bc5d77ac40
Notes:
sideshowbarker
2024-07-17 06:16:23 +09:00
Author: https://github.com/EWouters Commit: https://github.com/SerenityOS/serenity/commit/bc5d77ac40 Pull-request: https://github.com/SerenityOS/serenity/pull/15121 Reviewed-by: https://github.com/BenWiederhake Reviewed-by: https://github.com/paulwratt ✅ Reviewed-by: https://github.com/timschumi ✅
2 changed files with 13 additions and 8 deletions
|
@ -25,7 +25,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
|
|||
| [`c-ray`](c-ray/) | C-Ray | 8f30eb9 | https://github.com/vkoskiv/c-ray |
|
||||
| [`ca-certificates`](ca-certificates/) | Mozilla CA certificate store | 2022-04-26 | https://curl.se/docs/caextract.html |
|
||||
| [`carl`](carl/) | Crypto Ancienne Resource Loader | 1.5 | https://github.com/classilla/cryanc |
|
||||
| [`ccache`](ccache/) | ccache | 4.6 | https://ccache.dev/ |
|
||||
| [`ccache`](ccache/) | ccache | 4.6.3 | https://ccache.dev/ |
|
||||
| [`cfunge`](cfunge/) | cfunge | 2bc4fb2 | https://github.com/VorpalBlade/cfunge/ |
|
||||
| [`chester`](chester/) | Chester Gameboy Emulator | | https://github.com/veikkos/chester |
|
||||
| [`citron`](citron/) | Citron Programming Language | 0.0.9.3 | https://github.com/alimpfard/citron |
|
||||
|
|
|
@ -1,11 +1,16 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=ccache
|
||||
version=4.6
|
||||
useconfigure=true
|
||||
files="https://github.com/ccache/ccache/releases/download/v${version}/ccache-${version}.tar.gz ccache-$version.tar.gz 73a1767ac6b7c0404a1a55f761a746d338e702883c7137fbf587023062258625"
|
||||
auth_type=sha256
|
||||
depends=("zstd")
|
||||
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt" "-DCMAKE_BUILD_TYPE=Release" "-DREDIS_STORAGE_BACKEND=OFF" "-GNinja")
|
||||
port='ccache'
|
||||
version='4.6.3'
|
||||
useconfigure='true'
|
||||
files="https://github.com/ccache/ccache/releases/download/v${version}/ccache-${version}.tar.gz ccache-$version.tar.gz f46ba3706ad80c30d4d5874dee2bf9227a7fcd0ccaac31b51919a3053d84bd05"
|
||||
auth_type='sha256'
|
||||
depends=('zstd')
|
||||
configopts=(
|
||||
"-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt"
|
||||
"-DCMAKE_BUILD_TYPE=Release"
|
||||
"-DREDIS_STORAGE_BACKEND=OFF"
|
||||
"-GNinja"
|
||||
)
|
||||
|
||||
configure() {
|
||||
run cmake "${configopts[@]}" .
|
||||
|
|
Loading…
Reference in a new issue