- Remove calamares from packages.yaml: our fork stripped services-openrc, Artix repo provides working calamares (3.4.2-4) with openrc support - Add antergos-grub-theme to CI: uses real Antergos background + logo from grub2-theme-antergos repo merged with Artix UI infrastructure - Add antergos-live to CI: fork of artix-live with s/artix/antergos branding - Bump calamares-branding-antergos-next pkgrel 12->13: settings now call services-openrc instead of services-systemd, show.qml drops EndeavourOS, calamares-next.sh targets /home/antergos not /home/liveuser
33 lines
820 B
Bash
33 lines
820 B
Bash
# Maintainer: Antergos NeXT <antergos-next@github>
|
|
|
|
pkgname=antergos-release
|
|
pkgver=2026.06
|
|
pkgrel=1
|
|
pkgdesc='Antergos NeXT release file'
|
|
arch=('any')
|
|
url="https://github.com/Antergos-NeXT"
|
|
license=('GPL3')
|
|
conflicts=('artix-release')
|
|
provides=('os-release')
|
|
|
|
package() {
|
|
install -dm755 $pkgdir/usr/lib
|
|
install -dm755 $pkgdir/etc
|
|
cat > $pkgdir/usr/lib/os-release << EOF
|
|
NAME="Antergos NeXT"
|
|
PRETTY_NAME="Antergos NeXT"
|
|
ID=antergos
|
|
ID_LIKE=artix
|
|
BUILD_ID=rolling
|
|
ANSI_COLOR="38;2;0;136;204"
|
|
HOME_URL="https://github.com/Antergos-NeXT"
|
|
DOCUMENTATION_URL="https://wiki.archlinux.org"
|
|
SUPPORT_URL="https://github.com/Antergos-NeXT"
|
|
BUG_REPORT_URL="https://github.com/Antergos-NeXT"
|
|
LOGO=antergos-logo
|
|
EOF
|
|
cp $pkgdir/usr/lib/os-release $pkgdir/etc/os-release
|
|
}
|
|
|
|
backup=('etc/os-release' 'usr/lib/os-release')
|