mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
38 lines
876 B
Bash
Executable file
38 lines
876 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='wayland'
|
|
version='1.21.0'
|
|
useconfigure='true'
|
|
configopts=(
|
|
"--buildtype=release"
|
|
"--cross-file=${SERENITY_BUILD_DIR}/meson-cross-file.txt"
|
|
"-Dlibraries=true"
|
|
"-Dscanner=true"
|
|
"-Dtests=false"
|
|
"-Ddocumentation=false"
|
|
)
|
|
depends=(
|
|
'expat'
|
|
'libffi'
|
|
'libxml2'
|
|
)
|
|
files=(
|
|
"https://gitlab.freedesktop.org/wayland/wayland/-/releases/${version}/downloads/wayland-${version}.tar.xz#6dc64d7fc16837a693a51cfdb2e568db538bfdc9f457d4656285bb9594ef11ac"
|
|
)
|
|
|
|
configure() {
|
|
# TODO: Figure out why GCC doesn't autodetect that libgcc_s is needed.
|
|
if [ "${SERENITY_TOOLCHAIN}" = "GNU" ]; then
|
|
export LDFLAGS="-lgcc_s"
|
|
fi
|
|
|
|
run meson build "${configopts[@]}"
|
|
}
|
|
|
|
build() {
|
|
run ninja -C build
|
|
}
|
|
|
|
install() {
|
|
export DESTDIR="${SERENITY_INSTALL_ROOT}"
|
|
run meson install -C build
|
|
}
|