repo/make/PACKAGE

13 lines
198 B
Bash

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