Files
euri-packages/packages/antergos-release/PKGBUILD
T
c-ludenberg 43f1f6e1d9 chore(release): slip Arranxo date to 2026.08.17, bump pkgrel
Release CI + ISO build need more time (packages repo rebuild takes ~30
minutes). Bump pkgrel to 5 on antergos-release and
calamares-branding-antergos-next so the rebuilt packages win in the repo.
2026-08-16 23:50:18 +02:00

36 lines
913 B
Bash

# Maintainer: Antergos NeXT <antergos-next@github>
pkgname=antergos-release
pkgver=2026.08
pkgrel=5
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.17 Arranxo"
ID=antergos
ID_LIKE=artix
VERSION_ID=2026.08.17
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')