repo/automake/PACKAGE

13 lines
184 B
Bash

#!/bin/sh
pkg_ver="todo"
pkg_install() {
git clone https://git.savannah.gnu.org/git/automake.git
cd automake
make
make install DESTDIR="$1"
}
pkg_uninstall() {
make uninstall
}