repo/automake/PACKAGE

14 lines
184 B
Text
Raw Permalink Normal View History

#!/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
}