enodia-sentinal/packaging/build-package.sh
Luna 586f74b929 Relicense under GPL-3.0-or-later
Replace MIT with the full GNU GPLv3 text, update license metadata in
pyproject.toml (+ trove classifiers) and PKGBUILD, and add
SPDX-License-Identifier headers to all Python modules and shell scripts.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-05-31 06:52:34 -07:00

9 lines
312 B
Bash
Executable file

#!/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"