blob: d2fc46d9930069d1193f61f055462655c7af7042 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: Pedro H. Lara Campos <root@pedrohlc.com>
# Contributor: Florian Pritz <bluewind@xinu.at>
# Contributor: Dan McGee <dan@archlinux.org>
pkgname=chaotic-mirrorlist
pkgver=20210501
pkgrel=1
pkgdesc="Chaotic-AUR mirror list for use by pacman"
arch=('any')
url="https://aur.chaotic.cx"
license=('GPL')
backup=(etc/pacman.d/chaotic-mirrorlist)
source=(mirrorlist)
# NOTE on building this package:
# * Go to the trunk/ directory
# * Run bash -c ". PKGBUILD; updatelist"
# * Update the checksums, update pkgver
# * Build the package
updatelist() {
rm -f mirrorlist
curl -o mirrorlist "$url/mirrorlist.txt"
}
package() {
mkdir -p "$pkgdir/etc/pacman.d"
install -m644 "$srcdir/mirrorlist" "$pkgdir/etc/pacman.d/chaotic-mirrorlist"
}
sha256sums=('1ff556ef9964a4115e229d3a48be621e55f87ebf0151c817b9049ecacd9bda6b')
|