summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 19efc799c048a366e0b488142232a4690862913b (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
# Maintainer: Yuannan Lin [https://gitlab.com/yuannan] <yuannan@pm.me>

pkgname=yamr
pkgver=0.0.0.1
pkgrel=0
pkgdesc='Yet Another Mirror Ranker. The fastest mirror ranker!⁺ A fast mirrorlist in seconds!'
arch=('any')
url='https://gitlab.com/yuannan/yamr'
license=('GPL3')
depends=('geoip')
conflicts=()
source=("yamr::git+https://gitlab.com/yuannan/yamr")
sha256sums=('SKIP')

build() {
	cd yamr
	git submodule init
	git submodule update
	./clean_build.sh
}

test_out_path="/tmp/yamr.mirrorlist"
check() {
	if [ -e $test_out_path ]; then
		cat $test_out_path
	else
		echo "No test output detected at: " $test_out_path
		return -1
	fi
}

package() {
	install -Dm 755 "$srcdir/$pkgname/build/yamr" "$pkgdir/usr/bin/$pkgname"
}