# packages/expat/auxbuild
#

# download and unpack tarball
TARVERSION="2.0.1"
TARDIR="${BUILD_PACKAGE}-${TARVERSION}"
TARBALL="${TARDIR}.tar.gz"
build_download "http://heanet.dl.sourceforge.net/sourceforge/expat/${TARBALL}"
build_unpack "${TARBALL}"
PKGDIR="${TARDIR}"

# invoke configure (directory, prefix, extra arguments)
build_autoconf "${PKGDIR}"

# run make, make install (directory, extra arguments)
build_make "${PKGDIR}"
build_make "${PKGDIR}" "install"

# clean up
strip_files

true
# vim: ts=4:sw=4:expandtab:syntax=sh
