mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 17:40:27 +00:00
852bf35c1e
The asynchronous DNS requests library c-ares was ported to serenity
23 lines
582 B
Bash
Executable file
23 lines
582 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='c-ares'
|
|
version='1.19.0'
|
|
files="https://c-ares.org/download/c-ares-${version}.tar.gz c-ares-${version}.tar.gz bfceba37e23fd531293829002cac0401ef49a6dc55923f7f92236585b7ad1dd3"
|
|
auth_type='sha256'
|
|
useconfigure=true
|
|
configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt")
|
|
|
|
configure() {
|
|
mkdir -p c-ares-build
|
|
cmake -G Ninja \
|
|
"${configopts[@]}" \
|
|
-S "$workdir" \
|
|
-B c-ares-build
|
|
}
|
|
|
|
build() {
|
|
ninja -C c-ares-build "$makeopts"
|
|
}
|
|
|
|
install() {
|
|
ninja -C c-ares-build install
|
|
}
|