15 lines
281 B
Bash
15 lines
281 B
Bash
#!/usr/bin/env sh
|
|
|
|
# Build Script
|
|
|
|
# Run Autotools
|
|
libtoolize
|
|
aclocal
|
|
autoconf
|
|
autoheader
|
|
automake --add-missing
|
|
|
|
# Run Generated Files
|
|
# Disable static linking and enable GUI component; builds complete version.
|
|
./configure --disable-static --enable-shared --enable-extra=yes
|
|
make
|