# Exit on error:
set -e

wget http://ftpmirror.gnu.org/gettext/gettext-0.18.3.1.tar.gz
tar xf gettext-0.18.3.1.tar.gz
cd gettext-0.18.3.1

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

make install
cd ..
rm -rf gettext-0.18.3.1
rm gettext-0.18.3.1.tar.gz

exit 0
