poketex 1.16.3

Simple Pokedex based on TUI(Terminal User Interface)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
build:
	cargo build --release --frozen

install:
	cp target/release/poketex /usr/local/bin/
	mkdir -p /usr/local/share/poketex
	cp -rf colorscripts /usr/local/share/poketex

uninstall:
	rm /usr/local/bin/poketex
	rm -rf /usr/local/share/poketex

clean:
	rm -rf target

all: build install clean