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