summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authordeadhead4202018-08-14 09:43:15 -0400
committerdeadhead4202018-08-14 09:43:15 -0400
commit9bcb568e63379eb2cd8431762a7142e93d4b83ea (patch)
tree931e501c7953024aa9c1c67529138f4bf00dfdf1
parente0a610f6343c48096964dfe8cf136cedad429ea1 (diff)
downloadaur-9bcb568e63379eb2cd8431762a7142e93d4b83ea.tar.gz
Update depends
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD13
2 files changed, 6 insertions, 11 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4f6d82845a94..c36852194632 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,11 @@
pkgbase = fetchmirrors
pkgdesc = Fetch new pacman mirrorlist and rank the best
pkgver = 0.6
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/deadhead420/fetchmirrors
arch = any
license = GPL
- depends = curl
+ depends = curl pacman-contrib
source = https://raw.githubusercontent.com/deadhead420/fetchmirrors/master/fetchmirrors.sh
pkgname = fetchmirrors
diff --git a/PKGBUILD b/PKGBUILD
index 976ff30211f0..1a8f858041f6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,23 +1,18 @@
# Maintainer: deadhead <deadhead3492@gmail.com>
pkgname=fetchmirrors
pkgver=0.6
-pkgrel=2
+pkgrel=3
pkgdesc="Fetch and rank new pacman mirrorlist"
arch=('any')
url="https://github.com/deadhead420/fetchmirrors"
license=('GPL')
-depends=('curl')
-source=('https://raw.githubusercontent.com/deadhead420/fetchmirrors/master/fetchmirrors.sh'
- 'https://raw.githubusercontent.com/deadhead420/fetchmirrors/master/rankmirrors.sh')
-md5sums=('d2996d8b1febfeaaf6d6a8eeaa78f2a8'
- '7fc2d6bef78c48deb4c5c32726e0ea88')
+depends=('curl' 'pacman-contrib')
+source=('https://raw.githubusercontent.com/deadhead420/fetchmirrors/master/fetchmirrors.sh')
+md5sums=('d2996d8b1febfeaaf6d6a8eeaa78f2a8')
package() {
cd "${srcdir}"
install -Dm755 fetchmirrors.sh $pkgdir/usr/bin/fetchmirrors
- if [ ! -f /usr/bin/rankmirrors ]; then
- install -Dm755 rankmirrors.sh $pkgdir/usr/bin/rankmirrors
- fi
}
# vim:set ts=2 sw=2 et: