# Exit on error:
set -e

wget http://ftpmirror.gnu.org/grep/grep-2.15.tar.xz
tar xf grep-2.15.tar.xz
cd grep-2.15

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

make install
cd ..
rm -rf grep-2.15
rm grep-2.15.tar.xz

exit 0
