summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikita Almakov2021-02-22 11:29:11 +0300
committerNikita Almakov2021-02-22 11:29:11 +0300
commit7b993308cfb90b171f0967c3ca049bb1f7e1ac18 (patch)
treed71cb4fd9555890dd85eaccdf60a48a4dfa01850
parent92aeb01f8af0b23ec50c8f83985e9116b7a7c5c0 (diff)
downloadaur-7b993308cfb90b171f0967c3ca049bb1f7e1ac18.tar.gz
v0.2.1 - build target - musl
-rw-r--r--.SRCINFO10
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD14
3 files changed, 15 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2a7e1f393889..9d6a9f5d17bd 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,13 @@
pkgbase = rate-arch-mirrors-bin
pkgdesc = Everyday-use client-side map-aware arch mirror ranking tool
- pkgver = 0.2.0
- pkgrel = 3
+ pkgver = 0.2.1
+ pkgrel = 1
url = https://github.com/westandskif/rate-arch-mirrors
arch = x86_64
license = custom
- makedepends = cargo
- depends = gcc-libs
conflicts = rate-arch-mirrors
- source = rate-arch-mirrors-bin-0.2.0.tar.gz::https://github.com/westandskif/rate-arch-mirrors/releases/download/v0.2.0/rate-arch-mirrors-v0.2.0-x86_64-unknown-linux-gnu.tar.gz
- sha512sums = f8a489b88842d0d8861b6d994bedae93c285397b0587d6c492f83779d7d4df8328e16304afaf56976f825215079f54f9b799f767f3bccc070fb2348863de57ec
+ source = rate-arch-mirrors-bin-0.2.1.tar.gz::https://github.com/westandskif/rate-arch-mirrors/releases/download/v0.2.1/rate-arch-mirrors-v0.2.1-x86_64-unknown-linux-musl.tar.gz
+ sha512sums = 1d3f36ba8fadb6b8699a1d21bcb2bfdda1172b21eb163d2346ae9cefcb15624ab4fe39a087b70a8ba8b9a82c73628e52bfcbf85e6cc9864e13c36d409d13ec1f
pkgname = rate-arch-mirrors-bin
diff --git a/.gitignore b/.gitignore
index 6e92f57d4647..582c8bbdcf30 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,5 @@
tags
+pkg/
+src/
+*.zst
+*.gz
diff --git a/PKGBUILD b/PKGBUILD
index 853899c545a9..6db6fc42e860 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,24 +1,24 @@
# Maintainer: Nikita Almakov <nikita.almakov@gmail.com>
pkgname=rate-arch-mirrors-bin
-pkgver=0.2.0
-pkgrel=3
+pkgver=0.2.1
+pkgrel=1
pkgdesc="Everyday-use client-side map-aware arch mirror ranking tool"
url="https://github.com/westandskif/rate-arch-mirrors"
license=('custom')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/westandskif/rate-arch-mirrors/releases/download/v${pkgver}/rate-arch-mirrors-v${pkgver}-x86_64-unknown-linux-gnu.tar.gz")
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/westandskif/rate-arch-mirrors/releases/download/v${pkgver}/rate-arch-mirrors-v${pkgver}-x86_64-unknown-linux-musl.tar.gz")
arch=('x86_64')
-depends=('gcc-libs')
-makedepends=('cargo')
+depends=()
+makedepends=()
conflicts=('rate-arch-mirrors')
-sha512sums=('f8a489b88842d0d8861b6d994bedae93c285397b0587d6c492f83779d7d4df8328e16304afaf56976f825215079f54f9b799f767f3bccc070fb2348863de57ec')
+sha512sums=('1d3f36ba8fadb6b8699a1d21bcb2bfdda1172b21eb163d2346ae9cefcb15624ab4fe39a087b70a8ba8b9a82c73628e52bfcbf85e6cc9864e13c36d409d13ec1f')
build() {
tar xzf "${pkgname}-${pkgver}.tar.gz"
}
package() {
- cd "rate-arch-mirrors-v${pkgver}-x86_64-unknown-linux-gnu"
+ cd "rate-arch-mirrors-v${pkgver}-x86_64-unknown-linux-musl"
install -Dm755 "rate_arch_mirrors" "$pkgdir/usr/bin/rate-arch-mirrors"
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"