# packages/minicom/auxbuild
#

# download and unpack tarball
TARVERSION="2.7"
TARDIR="${BUILD_PACKAGE}-${TARVERSION}"
TARBALL="${TARDIR}.tar.gz"

STUPID_NUM="3977"

build_download "http://alioth.debian.org/frs/download.php/file/${STUPID_NUM}/${TARBALL}"
build_unpack "${TARBALL}"

# invoke configure (directory, prefix, extra arguments)
build_autoconf "${TARDIR}" "" "--sysconfdir=/etc/minicom --disable-nls"

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

# strip the executable files
strip_files

# copy across static content
cp -a static/* "${BUILDROOT}"

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