14 lines
184 B
Text
14 lines
184 B
Text
|
#!/bin/sh
|
||
|
pkg_ver="todo"
|
||
|
|
||
|
pkg_install() {
|
||
|
git clone https://git.savannah.gnu.org/git/automake.git
|
||
|
cd automake
|
||
|
make
|
||
|
make install DESTDIR="$1"
|
||
|
}
|
||
|
|
||
|
pkg_uninstall() {
|
||
|
make uninstall
|
||
|
}
|