# SPDX-FileCopyrightText: (c) 2026 Daniel Hast
#
# SPDX-License-Identifier: Apache-2.0 OR MIT

[default]
@_default:
    just --list

build:
    mkdir -p build
    meson setup --reconfigure build -Dprefix=/usr
    meson compile -C build

install: build
    DESTDIR=bwrap-restricted meson install -C build

clean:
    rm -rf build .pytest_cache

test:
    uv run pytest
