add zsh & bash package
This commit is contained in:
parent
4cbdbef976
commit
f56842ca57
3 changed files with 17 additions and 1 deletions
8
bash/Makefile
Normal file
8
bash/Makefile
Normal 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
|
|
@ -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
8
zsh/Makefile
Normal 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
|
Loading…
Reference in a new issue