mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
18 lines
601 B
Bash
18 lines
601 B
Bash
|
# Maintainer: Xyne <xyne at archlinux dot us>
|
||
|
pkgname=reflector
|
||
|
pkgver=4.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="A script to retrieve and filter the latest mirrorlist from Gerbra's mirror page."
|
||
|
depends=('perl' 'perl-xyne-arch')
|
||
|
arch=('any')
|
||
|
license=('GPL')
|
||
|
url="http://xyne.archlinux.ca/info/${pkgname}"
|
||
|
source=(http://xyne.archlinux.ca/src/${pkgname}-${pkgver}.tar.gz)
|
||
|
md5sums=('1d8af24b866282b3e9969e7bccd20905')
|
||
|
|
||
|
build() {
|
||
|
install -D -m755 $srcdir/$pkgname/$pkgname $pkgdir/usr/bin/${pkgname}
|
||
|
install -D -m644 $srcdir/$pkgname/man/$pkgname.1.gz $pkgdir/usr/share/man/man1/$pkgname.1.gz
|
||
|
}
|
||
|
# vim: set ts=2 sw=2 et:
|