summaryrefslogtreecommitdiff
path: root/libre/reflector/PKGBUILD
blob: e8e81a38f264423fc703f9accf90a2e067525b9e (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
46
#Maintainer (Arch): Xyne <ac xunilhcra enyx, backwards>
#Maintainer: André Silva <emulatorman@parabola.nu>
pkgname=reflector
pkgver=2016
pkgrel=1.parabola1
pkgdesc='A Python 3 module and script to retrieve and filter the latest Pacman mirror list (Parabola rebranded)'
arch=(any)
license=(GPL)
url="http://xyne.archlinux.ca/projects/reflector"
replaces=(${pkgname}-parabola)
conflicts=(${pkgname}-parabola)
depends=(python3)
optdepends=('rsync: rate rsync mirrors')
source=(
  http://xyne.archlinux.ca/projects/reflector/src/reflector-2016.tar.xz
  http://xyne.archlinux.ca/projects/reflector/src/reflector-2016.tar.xz.sig
  rebranding.patch
)
sha512sums=(
  fdf85af6ffd53343af644d4be01d0a9d688fb443e51f7014b18404812afd639684e9bbabd564adb2fa303573351da6567f4afc6764a06b228e2b03a1509d99fe
  d150c38b122765ce5886ff59ddc5f8e43eb1d831ead016a436b1d3eb69b07919425acd1c0ca0e0eed6fc6a627c4e16a4f119034b1357586f18502a2dbbb7b85b
  242fe3ae1850d2beab775fff96b173dfd5ed71178d6b3324592a179e4658209b0f0cf0bc25faba6ff31a3b379877723c2117feb9570bad6adb5339f621932ec5
)
md5sums=(
  9c2ba25cd43664d4df5232d599fe567d
  5e47204f34ba71db824491fd3ca39d56
  9ee7955d3238c2ea4fc816139bbbc847
)
validpgpkeys=('EC3CBE7F607D11E663149E811D1F0DC78F173680')

prepare ()
{
  cd "$srcdir/$pkgname-$pkgver"
  # Rebranding for Parabola
  patch -Np1 -i "$srcdir/rebranding.patch"
}

package ()
{
  cd "$srcdir/$pkgname-$pkgver"
  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
  install -Dm755 "$srcdir/$pkgname-$pkgver/$pkgname" "$pkgdir/usr/bin/$pkgname"
}


# vim: set ts=2 sw=2 et: