14 lines
168 B
Text
14 lines
168 B
Text
|
#!/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
|
||
|
}
|