# packages/readline/auxbuild
#

# download and unpack tarball
TARVERSION="5.2"
TARDIR="${BUILD_PACKAGE}-${TARVERSION}"
TARBALL="${TARDIR}.tar.gz"
build_download "ftp://ftp.cwru.edu/pub/bash/${TARBALL}"
build_unpack "${TARBALL}"

# invoke configure (directory, prefix, extra arguments)
build_autoconf "${TARDIR}" "/" "--with-curses"

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

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