14 lines
211 B
Bash
14 lines
211 B
Bash
#!/bin/sh
|
|
pkg_ver="todo"
|
|
|
|
pkg_install(){
|
|
git clone https://git.savannah.gnu.org/git/make.git
|
|
cd make
|
|
./bootstrap
|
|
./configure
|
|
make
|
|
make install
|
|
}
|
|
pkg_uninstall(){
|
|
rm /usr/bin
|
|
}
|