preparing for pkg

This commit is contained in:
Eric Lay 2023-04-18 00:15:37 -05:00
parent 0c9b118a96
commit 8204fe0df7
2 changed files with 36 additions and 6 deletions

30
PKGBUILD Normal file
View File

@ -0,0 +1,30 @@
# Maintainer: Eric Lay <ericlaytm@gmail.com>
pkgname=fuzzy-pokedex-git
_pkgname=fuzzy-pokedex
pkgver=r16.0c9b118
pkgrel=1
pkgdesc="A Pokedex for your terminal"
arch=('any')
url="https://github.com/ericlay/$_pkgname"
license=('GPL3')
depends=('python-beautifulsoup4'
'fzf'
'parallel'
'pokemon-colorscripts-git'
'ttf-font-nerd')
makedepends=('git')
source=("git+$url.git")
md5sums=('SKIP')
pkgver(){
cd "$_pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir/$_pkgname"
mkdir -p "$pkgdir/usr/share/$_pkgname/pokeData"
install -Dm644 pokeData/* -t "$pkgdir/usr/share/$_pkgname/pokeData"
install -Dm755 fuzzy-pokedex -t "$pkgdir/usr/bin"
install -Dm755 pokeinfo -t "$pkgdir/usr/bin"
}

View File

@ -11,10 +11,12 @@ help() {
echo -e "\tctrl-n\tShows small sprite version\n\tctrl-b\tShows large sprite version\n\tctrl-s\tShows shiny sprite version\n\tctrl-h\tShows this help screen in preview window\n" echo -e "\tctrl-n\tShows small sprite version\n\tctrl-b\tShows large sprite version\n\tctrl-s\tShows shiny sprite version\n\tctrl-h\tShows this help screen in preview window\n"
} }
### Set pokeData location
POKEDATA="/usr/share/fuzzy-pokedex/pokeData/"
### Pokedex viewer using pokemon-colorscripts and fzf ### Pokedex viewer using pokemon-colorscripts and fzf
fuzzy_pokedex() { fuzzy_pokedex() {
POKEDATA="/home/ez/Git/fuzzy-pokedex/pokeData/" pokemon-colorscripts -l |
pokemon-colorscripts -l | sort |
fzf -q "$1" +m -s -i \ fzf -q "$1" +m -s -i \
--cycle \ --cycle \
--reverse \ --reverse \
@ -40,13 +42,11 @@ fuzzy_pokedex() {
### Update Pokemon stats file set ### Update Pokemon stats file set
update_pokeData() { update_pokeData() {
POKEINFO="/home/ez/Git/fuzzy-pokedex/pokeinfo"
POKEDATA="/home/ez/Git/fuzzy-pokedex/pokeData/"
echo -e "\n\t\tWARNING!!!\n\tThis WILL take a long time\n" echo -e "\n\t\tWARNING!!!\n\tThis WILL take a long time\n"
if [[ -n "$1" ]]; then if [[ -n "$1" ]]; then
pokemon-colorscripts -l | sort | parallel --bar --color --retry-failed -j "$1" "$POKEINFO" {} ">" "$POKEDATA"{} pokemon-colorscripts -l | sort | parallel --bar --color --retry-failed -j "$1" pokeinfo {} ">" "$POKEDATA"{}
else else
pokemon-colorscripts -l | sort | parallel --bar --color --retry-failed -j 200% "$POKEINFO" {} ">" "$POKEDATA"{} pokemon-colorscripts -l | sort | parallel --bar --color --retry-failed -j 200% pokeinfo {} ">" "$POKEDATA"{}
fi fi
} }