12 строки
143 B
Bash
12 строки
143 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
autopoint
|
||
|
libtoolize --automake --copy
|
||
|
aclocal -I m4
|
||
|
autoheader
|
||
|
automake --add-missing --copy
|
||
|
autoconf
|
||
|
./configure $*
|