1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 12:17:36 +00:00

Ports/ccache: Update ccache to version 4.6.3

This commit is contained in:
EWouters 2022-09-03 20:00:39 +02:00 committed by Sam Atkins
parent 7c93eabffe
commit bc5d77ac40
2 changed files with 13 additions and 8 deletions

View file

@ -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[@]}" .