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>
9 lines
312 B
Bash
Executable file
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"
|