summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2b68d1d530cd5903ef875dc971a6731cc47d268b (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
# Maintainer: Cristian Gutierrez <cristian@crstian.me>

_pkgname=pokeget
pkgname=pokeget-git
pkgver=1.1.r7.gc1fc8a9
pkgrel=1
pkgdesc="Pokeget is a bash script you can use to display cool sprites of pokemon in your terminal. "
arch=('any')
url="https://github.com/talwat/pokeget"
license=('MIT')
depends=('bash')
makedepends=('git')
source=("git+https://github.com/talwat/pokeget.git")
sha256sums=('SKIP')

pkgver() {
  cd "${_pkgname}"
  git describe --tags --long | sed -r -e 's,^[^0-9]*,,;s,([^-]*-g),r\1,;s,[-_],.,g'
}

package() {
  cd "${_pkgname}"


  install -Dm755 pokeget "${pkgdir}/usr/bin/pokeget"
  
}