14 lines
241 B
Bash
14 lines
241 B
Bash
#!/bin/sh
|
|
pkg_ver="todo"
|
|
|
|
pkg_install(){
|
|
git clone git://git.savannah.gnu.org/libtool.git
|
|
cd libtool
|
|
./configure --prefix=${PREFIX}/usr
|
|
make
|
|
make check
|
|
make install
|
|
}
|
|
pkg_install(){
|
|
make uninstall
|
|
}
|