repo/autoconf/PACKAGE

14 lines
168 B
Text
Raw Permalink Normal View History

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