Files
euri-packages/packages/antergos-release/PKGBUILD
T
c-ludenberg d5381b6885 fix: add replaces=('artix-release') to antergos-release PKGBUILD
Without replaces=(), pacman sees the conflict with artix-release
but doesn't know to replace it, causing error code 1 during online
install when packages module tries to install packaging from
[antergos-pkgs] repo. Bump pkgrel 1 -> 2.
2026-07-02 23:16:07 +02:00

34 lines
848 B
Bash

# Maintainer: Antergos NeXT <antergos-next@github>
pkgname=antergos-release
pkgver=2026.06
pkgrel=2
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"
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.artixlinux.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')