repo/make/PACKAGE
2021-07-02 00:34:50 +02:00

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
}