# packages/e2fsprogs/auxbuild
#

# download and unpack tarball
TARVERSION="1.42.7"
TARDIR="${BUILD_PACKAGE}-${TARVERSION}"
TARBALL="${TARDIR}.tar.gz"
build_download "http://downloads.sourceforge.net/e2fsprogs/${TARBALL}"
build_unpack "${TARBALL}"
PKGDIR="${TARDIR}"

# invoke configure (directory, prefix, extra arguments)
#  util-linux provides libuuid and libblkid
build_autoconf "${PKGDIR}" "/usr" \
	"--disable-libuuid --disable-uuidd --disable-libblkid \
     --enable-symlink-install --disable-rpath"

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

strip_files

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