2026-06-18 18:38:53 +02:00
|
|
|
# Maintainer: Celestia Ludenberg <ash8820@proton.me>
|
|
|
|
|
|
|
|
|
|
pkgname=calamares-branding-antergos-next
|
|
|
|
|
pkgver=1.0
|
2026-06-19 23:01:40 +02:00
|
|
|
pkgrel=2
|
2026-06-18 18:38:53 +02:00
|
|
|
pkgdesc="Minimal Calamares branding for Antergos NeXT"
|
|
|
|
|
arch=('any')
|
|
|
|
|
url="https://github.com/Antergos-NeXT"
|
|
|
|
|
license=('GPL3')
|
|
|
|
|
depends=('calamares')
|
|
|
|
|
source=("branding.desc"
|
|
|
|
|
"stylesheet.qss"
|
|
|
|
|
"show.qml")
|
|
|
|
|
sha256sums=('SKIP'
|
|
|
|
|
'SKIP'
|
|
|
|
|
'SKIP')
|
|
|
|
|
|
|
|
|
|
package() {
|
|
|
|
|
local _brand="/usr/share/calamares/branding/antergos-next"
|
|
|
|
|
install -dm755 "${pkgdir}${_brand}"
|
|
|
|
|
|
|
|
|
|
cp "branding.desc" "${pkgdir}${_brand}/"
|
|
|
|
|
cp "stylesheet.qss" "${pkgdir}${_brand}/"
|
|
|
|
|
cp "show.qml" "${pkgdir}${_brand}/"
|
|
|
|
|
|
|
|
|
|
# Symlink Antergos logo from cnchi or wallpapers
|
|
|
|
|
# Use antergos-icon from system if available
|
|
|
|
|
install -dm755 "${pkgdir}/etc/calamares"
|
|
|
|
|
cat > "${pkgdir}/etc/calamares/settings.conf" << 'CONF'
|
|
|
|
|
---
|
2026-06-19 23:03:14 +02:00
|
|
|
modules-search: [ local ]
|
2026-06-18 18:38:53 +02:00
|
|
|
|
|
|
|
|
sequence:
|
2026-06-19 23:03:14 +02:00
|
|
|
- show:
|
|
|
|
|
- welcome
|
|
|
|
|
- locale
|
|
|
|
|
- keyboard
|
|
|
|
|
- partition
|
|
|
|
|
- users
|
|
|
|
|
- summary
|
2026-06-18 18:38:53 +02:00
|
|
|
- exec:
|
2026-06-19 23:03:14 +02:00
|
|
|
- partition
|
|
|
|
|
- mount
|
|
|
|
|
- unpackfs
|
|
|
|
|
- machineid
|
|
|
|
|
- fstab
|
|
|
|
|
- locale
|
|
|
|
|
- keyboard
|
|
|
|
|
- localecfg
|
|
|
|
|
- luksbootkeyfile
|
|
|
|
|
- luksopenswaphookcfg
|
|
|
|
|
- initcpiocfg
|
|
|
|
|
- initcpio
|
|
|
|
|
- users
|
|
|
|
|
- displaymanager
|
|
|
|
|
- networkcfg
|
|
|
|
|
- hwclock
|
|
|
|
|
- services-systemd
|
|
|
|
|
- grubcfg
|
|
|
|
|
- bootloader
|
|
|
|
|
- umount
|
|
|
|
|
- show:
|
|
|
|
|
- finished
|
2026-06-18 18:38:53 +02:00
|
|
|
|
|
|
|
|
branding: antergos-next
|
2026-06-19 23:03:14 +02:00
|
|
|
|
|
|
|
|
prompt-install: false
|
|
|
|
|
dont-chroot: false
|
|
|
|
|
oem-setup: false
|
|
|
|
|
disable-cancel: false
|
|
|
|
|
disable-cancel-during-exec: false
|
|
|
|
|
hide-back-and-next-during-exec: false
|
|
|
|
|
quit-at-end: false
|
2026-06-18 18:38:53 +02:00
|
|
|
CONF
|
|
|
|
|
}
|