Files
euri-packages/packages/antergos-release/PKGBUILD
T
c-ludenberg 5b19fa6ca0 release: 2026.08.16 Arranxo (semi-hotfix) + fix CI dinit deps
New KDE Plasma (Minimal) entry makes this a semi-hotfix release:
- os-release: 2026.08.16 Arranxo (antergos-release pkgrel 4)
- branding: versionedName updated in branding.desc (pkgrel 4)
- CI: build in base-dinit container so makepkg dep-check can resolve
  dinit without conflicting with openrc (fixes cosmic-greeter-dinit build)
2026-08-16 21:34:35 +02:00

36 lines
913 B
Bash

# Maintainer: Antergos NeXT <antergos-next@github>
pkgname=antergos-release
pkgver=2026.08
pkgrel=4
pkgdesc='Antergos NeXT release file'
arch=('any')
url="https://github.com/Antergos-NeXT"
license=('GPL3')
conflicts=('artix-release')
replaces=('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 2026.08.16 Arranxo"
ID=antergos
ID_LIKE=artix
VERSION_ID=2026.08.16
VERSION_CODENAME=arranxo
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')