# Exit on error:
set -e

wget -c http://www.x.org/releases/individual/app/xkbevd-1.1.3.tar.bz2
tar xf xkbevd-1.1.3.tar.bz2
cd xkbevd-1.1.3

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

make \
    LIBS="-lxcb -lXau" \
    install

cd ..
rm -rf xkbevd-1.1.3
rm xkbevd-1.1.3.tar.bz2

exit 0
