aboutsummaryrefslogtreecommitdiffstats
path: root/main/alpine-mirrors/APKBUILD
blob: 1912c044d1e721951ccc1b222a080e02d45bd132 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Contributor: Matt Smith <mcs@darkregion.net>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=alpine-mirrors
pkgver=3.5.0
pkgrel=0
pkgdesc="List of Alpine Linux Mirrors"
url="http://alpinelinux.org/"
arch="noarch"
license="MIT"
depends=""
makedepends="curl"
install=""
subpackages=""
source="mirrors.yaml"

build() {
	cd "$srcdir"
	awk '$1 == "-" && $2 ~ /^http:/ {print $2}' mirrors.yaml > MIRRORS.txt
}

check() {
	cd "$srcdir"
	local failed=""
	for i in $(cat MIRRORS.txt); do
		msg "testing $i"
		curl --head --connect-timeout 10 $i >/dev/null \
			|| failed="$failed $i"
	done
	if [ -n "$failed" ]; then
		error "Following mirrors failed:"
		for i in $failed; do
			echo $i
		done
		return 1
	fi
}

package() {
	install -D -m644 "$srcdir"/mirrors.yaml \
		"$pkgdir"/usr/share/alpine-mirrors/mirrors.yaml || return 1
	install -D -m644 "$srcdir"/MIRRORS.txt \
		"$pkgdir"/usr/share/alpine-mirrors/MIRRORS.txt || return 1
}

sha512sums="5f701c77ecf43ac3c0e8f966348998a668e0611b5796359e339df67ef387e0442f38d52f060082edf1350d984545fa05fdd6ae3a03174890d0c30d1e2a5ec773  mirrors.yaml"