# packages/rsync/auxbuild
#

# download and unpack tarball
TARVERSION="3.0.2"
TARDIR="${BUILD_PACKAGE}-${TARVERSION}"
TARBALL="${TARDIR}.tar.gz"
build_download "http://rsync.samba.org/ftp/rsync/${TARBALL}"
build_unpack "${TARBALL}"

# invoke configure (directory, prefix, extra arguments)
export ac_cv_func_lutimes="no"
build_autoconf "${TARDIR}"

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

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