mirror of
https://codeberg.org/metamuffin/abrechenbarkeit-sd.git
synced 2024-12-22 14:44:35 +00:00
20 lines
655 B
Bash
20 lines
655 B
Bash
|
#!/usr/bin/env bash
|
||
|
# shellcheck disable=SC2034
|
||
|
|
||
|
iso_name="abrecheniso"
|
||
|
iso_label="ASD_$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m)"
|
||
|
iso_publisher="metamuffin"
|
||
|
iso_application="Abrechenbarkeit System Distribution"
|
||
|
iso_version="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y.%m.%d)"
|
||
|
install_dir="asd"
|
||
|
buildmodes=('iso')
|
||
|
bootmodes=('uefi-ia32.systemd-boot.esp' 'uefi-x64.systemd-boot.esp')
|
||
|
arch="x86_64"
|
||
|
pacman_conf="pacman.conf"
|
||
|
airootfs_image_type="squashfs"
|
||
|
airootfs_image_tool_options=('-comp' 'zstd' '-Xcompression-level' '5')
|
||
|
bootstrap_tarball_compression=(zstd -c -T0 --long -19)
|
||
|
file_permissions=(
|
||
|
["/etc/shadow"]="0:0:400"
|
||
|
)
|