repo/make/PACKAGE

15 lines
215 B
Text
Raw Normal View History

#!/bin/sh
pkg_ver="todo"
pkg_install(){
git clone https://git.savannah.gnu.org/git/make.git
cd make
./bootstrap
2021-07-01 23:24:08 +03:00
./configure
make
2021-07-01 23:35:24 +03:00
make install-bin
}
pkg_uninstall(){
rm /usr/bin
}