mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
50758181a3
This commit updates the formatting for all ports to be updated in this PR in one go, to keep those changes centralized.
17 lines
428 B
Bash
Executable file
17 lines
428 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='zstd'
|
|
version='1.5.2'
|
|
files=(
|
|
"https://github.com/facebook/zstd/releases/download/v${version}/zstd-${version}.tar.gz#7c42d56fac126929a6a85dbc73ff1db2411d04f104fae9bdea51305663a83fd0"
|
|
)
|
|
useconfigure='true'
|
|
|
|
configure() {
|
|
run cmake \
|
|
-S 'build/cmake' \
|
|
-DCMAKE_TOOLCHAIN_FILE="${SERENITY_BUILD_DIR}/CMakeToolchain.txt"
|
|
}
|
|
|
|
install() {
|
|
run make install
|
|
}
|