13 lines
195 B
Text
13 lines
195 B
Text
|
#!/bin/sh
|
||
|
pkg_ver="todo"
|
||
|
|
||
|
pkg_install(){
|
||
|
git clone https://github.com/zsh-users/zsh.git
|
||
|
cd zsh
|
||
|
make
|
||
|
make install DESTDIR="${PREFIX}"
|
||
|
}
|
||
|
pkg_uninstall(){
|
||
|
make uninstall
|
||
|
}
|