#!/bin/bash # SPDX-License-Identifier: GPL-3.0-or-later # Build the Arch package from the repo root. set -e cd "$(dirname "$0")" echo "Building enodia-sentinel package..." makepkg -f --noconfirm mv -f *.pkg.tar.zst ../ 2>/dev/null || true echo "Done. Install with: sudo pacman -U enodia-sentinel-*.pkg.tar.zst"