14 lines
240 B
Bash
14 lines
240 B
Bash
#!/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
|
|
}
|