#!/bin/bash
set -e

./configure --prefix=/usr    \
            --disable-static \
            --docdir=/usr/share/doc/expat-"${VERSION}" &&

make &&

make -j1 install &&

install -v -m644 doc/*.{html,png,css} /usr/share/doc/expat-"${VERSION}"