add zsh & bash package

This commit is contained in:
Ohio2 2021-01-29 10:15:04 +01:00
parent 4cbdbef976
commit f56842ca57
3 changed files with 17 additions and 1 deletions

8
bash/Makefile Normal file
View file

@ -0,0 +1,8 @@
prepare:
git clone https://git.savannah.gnu.org/git/bash.git && cd bash
bash:
make
install:
make install
uninstall:
make uninstall

View file

@ -1,5 +1,5 @@
prepare: prepare:
git clone git://gcc.gnu.org/git/gcc.git git clone git://gcc.gnu.org/git/gcc.git && cd gcc
gcc: gcc:
make make
install: install:

8
zsh/Makefile Normal file
View file

@ -0,0 +1,8 @@
prepare:
git clone https://github.com/zsh-users/zsh.git && cd zsh
zsh:
make
install:
make install
uninstall:
make uninstall