# packages/iptables/auxbuild
#

# download and unpack tarball
TARVERSION="1.4.12.1"
TARDIR="${BUILD_PACKAGE}-${TARVERSION}"
PKGDIR="${TARDIR}"
TARBALL="${TARDIR}.tar.bz2"
build_download "http://www.netfilter.org/projects/iptables/files/${TARBALL}"
build_unpack "${TARBALL}"

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

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

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