-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
34 lines (29 loc) · 994 Bytes
/
Makefile
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
29
30
31
32
33
34
export PIPENV_VENV_IN_PROJECT=true
.PHONY: clean
clean:
mkdir -p Formula
rm -rf .venv
rm -f Pipfile Pipfile.lock
pipenv --python 3.12
pipenv install --dev homebrew-pypi-poet
.PHONY: frogmouth
frogmouth: clean
pipenv install $@
pipenv run poet -f $@ > Formula/[email protected]
sed -i '' 's/Shiny new formula/A Markdown browser for your terminal/' Formula/[email protected]
.PHONY: see
see: clean
pipenv install textualize-see
pipenv run poet -f textualize-see > Formula/[email protected]
sed -i '' 's/Shiny new formula/A file opener for the terminal/' Formula/[email protected]
sed -i '' 's/TextualizeSee/See/' Formula/[email protected]
.PHONY: textual-web
textual-web: clean
pipenv install $@
pipenv run poet -f $@ > Formula/[email protected]
sed -i '' 's/Shiny new formula/Run TUIs and terminals in your browser/' Formula/[email protected]
.PHONY: toolong
toolong: clean
pipenv install $@
pipenv run poet -f $@ > Formula/[email protected]
sed -i '' 's/Shiny new formula/A terminal application to view, tail, merge, and search log files (plus JSONL)/' Formula/[email protected]