Add build/install scripts

This commit is contained in:
2025-12-14 15:32:50 +01:00
parent 4c170cf105
commit d6ec34c922
4 changed files with 163 additions and 0 deletions

16
scripts/all.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -euo pipefail
# Convenience wrapper:
# apply patches -> build -> install
#
# Env:
# SSLTYPE, TARGET, JOBS (see build.sh)
# PREFIX (see install.sh)
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT"
./scripts/apply-patches.sh
./scripts/build.sh
./scripts/install.sh