summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cd519c0189702f2315372b56b7958e46dee21ca7 (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
# Maintainer: xxvirusxx <condor20_05 at yahoo dot it>
# Contributor: deadhead <deadhead3492 at gmail dot com>

pkgname=arch-wiki-cli
pkgver=0.4
pkgrel=2
pkgdesc="Search the arch wiki from the cli"
arch=('any')
url="https://github.com/deadhead420/arch-wiki"
license=('GPL')
depends=('bash')
optdepends=(
  'lynx: to view the wiki inside your shell'
  'elinks: to view the wiki inside your shell'
  'links: to view the wiki inside your shell'
)
source=('https://raw.githubusercontent.com/deadhead420/arch-wiki/master/arch-wiki.sh'
        'https://raw.githubusercontent.com/deadhead420/arch-wiki/master/arch-wiki.desktop')
md5sums=('437f7de1ace85e9397b83ddacc8bcc54'
         'f2a1dc5091fe9bb20ea0afb1b102262d')

package() {
  cd "${srcdir}"
  install -Dm755 arch-wiki.sh "$pkgdir"/usr/bin/arch-wiki
  install -Dm644 arch-wiki.desktop "$pkgdir"/usr/share/applications/arch-wiki.desktop
}

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