# Exit on error:
set -e

wget ftp://invisible-island.net/mawk/mawk-1.3.4-20160905.tgz
tar xf mawk-1.3.4-20160905.tgz
cd mawk-1.3.4-20160905

CC=/static/bin/musl-gcc \
    LDFLAGS='-s -L/static/lib -static -static-libgcc' \
    ./configure --prefix=/static

make install
cd ..
rm -rf mawk-1.3.4-20160905
#rm mawk-1.3.4-20160905.tgz

exit 0