repo/m4/PACKAGE

15 lines
240 B
Text
Raw Permalink Normal View History

#!/bin/sh
pkg_ver="todo"
pkg_install(){
git clone http://git.savannah.gnu.org/r/m4.git
cd m4
export CFLAGS="$CFLAGS -static"
./configure
make
make install DESTDIR="${PREFIX}"
}
pkg_uninstall(){
make uninstall
}