repo/make/PACKAGE

15 lines
211 B
Text
Raw Permalink 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-02 01:34:50 +03:00
make install
}
pkg_uninstall(){
rm /usr/bin
}