#! /bin/sh
# put this in ~/.cron.daily
#
# It will mirror Slackbuilds.org, so that you can just go to a
# directory in the tree and build the slackbuild, without having to
# download it.
DEST=$HOME/SlackBuilds/12.2

# update the collection
rsync --update --delete -av \
    rsync://rsync.slackbuilds.org/slackbuilds/12.2/ \
    $DEST

