Fixes issue #1: two PKGBUILD files had wrong repo URL after repo rename. packages/antergos-next-desktop-settings/PKGBUILD line 8 packages/antergos-next-mirrorlist/PKGBUILD line 8
17 lines
420 B
Bash
17 lines
420 B
Bash
# Maintainer: Celestia Ludenberg <ash8820@proton.me>
|
|
|
|
pkgname=antergos-next-mirrorlist
|
|
pkgver=1
|
|
pkgrel=1
|
|
pkgdesc="Antergos NeXT mirror list"
|
|
arch=('any')
|
|
url="https://github.com/Antergos-NeXT/antergos-packages"
|
|
license=('GPL3')
|
|
source=("antergos-next-mirrorlist")
|
|
sha256sums=('SKIP')
|
|
|
|
package() {
|
|
install -dm755 "${pkgdir}/etc/pacman.d"
|
|
install -m644 "${srcdir}/antergos-next-mirrorlist" "${pkgdir}/etc/pacman.d/"
|
|
}
|