Newer
Older
minerva / Ports / wayland / package.sh
@minerva minerva on 13 Jul 873 bytes Initial commit
#!/usr/bin/env -S bash ../.port_include.sh
port='wayland'
version='1.21.0'
useconfigure='true'
configopts=(
    "--buildtype=release"
    "--cross-file=${MINERVA_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 [ "${MINERVA_TOOLCHAIN}" = "GNU" ]; then
        export LDFLAGS="-lgcc_s"
    fi

    run meson build "${configopts[@]}"
}

build() {
    run ninja -C build
}

install() {
    export DESTDIR="${MINERVA_INSTALL_ROOT}"
    run meson install -C build
}