summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c58fc0d1358097c0afb1323d062adcfaba5f8be3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: deadhead <deadhead3492@gmail.com>
pkgname=fetchpkg
pkgver=0.3
pkgrel=3
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
  install -Dm644 fetchpkg.png "$pkgdir"/usr/share/pixmaps/fetchpkg.png
  install -Dm644 fetchpkg.desktop "$pkgdir"/usr/share/applications/fetchpkg.desktop
}

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