summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ee2ce16fd475a1532aed80259d630027918c202b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: deadhead <deadhead3492@gmail.com>
pkgname=fetchpkg
pkgver=0.1
pkgrel=2
pkgdesc="CLI frontend for pacman / AUR"
arch=('any')
url="https://github.com/deadhead420/fetchpkg"
license=('GPL')
depends=('curl')
optdepends=('fetchmirrors: update and rank pacman mirrorlist')
source=(git+https://github.com/deadhead420/fetchpkg.git)
md5sums=('SKIP')

package() {
  cd "${srcdir}"/fetchpkg
  install -Dm755 fetchpkg "$pkgdir"/usr/bin/fetchpkg
  install -Dm644 fetchpkg.conf "$pkgdir"/etc/fetchpkg.conf
}

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