Switch to PokeAPI #1
12
PKGBUILD
12
PKGBUILD
|
@ -1,20 +1,19 @@
|
||||||
# Maintainer: Eric Lay <ericlaytm@gmail.com>
|
# Maintainer: Eric Lay <ericlaytm@gmail.com>
|
||||||
pkgname=fuzzy-pokedex
|
pkgname=fuzzy-pokedex-dev
|
||||||
pkgver=r38.ba9e1a3
|
pkgver=r38.ba9e1a3
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="A Pokedex for your terminal"
|
pkgdesc="A Pokedex for your terminal -DEV VERSION"
|
||||||
arch=('any')
|
arch=('any')
|
||||||
url="https://github.com/ericlay/fuzzy-pokedex"
|
url="https://github.com/ericlay/fuzzy-pokedex"
|
||||||
license=('GPL3')
|
license=('GPL3')
|
||||||
depends=('python-beautifulsoup4'
|
depends=('fzf'
|
||||||
'fzf'
|
|
||||||
'parallel'
|
'parallel'
|
||||||
'jq'
|
'jq'
|
||||||
'espeak-ng'
|
'espeak-ng'
|
||||||
'pokemon-colorscripts-git'
|
'pokemon-colorscripts-git'
|
||||||
'ttf-font-nerd')
|
'ttf-font-nerd')
|
||||||
makedepends=('git')
|
makedepends=('git')
|
||||||
source=("git+https://github.com/ericlay/fuzzy-pokedex.git")
|
source=("git+https://github.com/ericlay/fuzzy-pokedex.git#branch=dev")
|
||||||
md5sums=('SKIP')
|
md5sums=('SKIP')
|
||||||
|
|
||||||
pkgver(){
|
pkgver(){
|
||||||
|
@ -26,6 +25,5 @@ package() {
|
||||||
cd "$srcdir/$pkgname"
|
cd "$srcdir/$pkgname"
|
||||||
install -Dm666 pokeData/* -t "$pkgdir/usr/share/$pkgname/pokeData"
|
install -Dm666 pokeData/* -t "$pkgdir/usr/share/$pkgname/pokeData"
|
||||||
install -Dm666 keybindings-preview -t "$pkgdir/usr/share/$pkgname/"
|
install -Dm666 keybindings-preview -t "$pkgdir/usr/share/$pkgname/"
|
||||||
install -Dm755 pokedex -t "$pkgdir/usr/bin"
|
install -Dm755 pokedex -t "$pkgdir/usr/bin/pokedex-dev"
|
||||||
install -Dm755 pokeInfo -t "$pkgdir/usr/bin"
|
|
||||||
}
|
}
|
||||||
|
|
4
pokedex
4
pokedex
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### Overhad preparation
|
### Overhad preparation
|
||||||
KBINDS="/usr/share/fuzzy-pokedex/keybindings-preview"
|
KBINDS="/usr/share/fuzzy-pokedex-dev/keybindings-preview"
|
||||||
POKEDATA="./pokeData"
|
POKEDATA="/usr/share/fuzzy-pokedex-dev/pokeData"
|
||||||
|
|
||||||
### Help
|
### Help
|
||||||
help() {
|
help() {
|
||||||
|
|
Loading…
Reference in New Issue