#! /bin/sh # Mk-distr script. # # This file is a part of Bookmarks Database and Internet robot. # Author: Oleg Broytman . # Copyright: (C) 2004-2008 PhiloSoft Design. # License: GPL. # __version__ = \ # __revision__ = "$Id$" # __date__ = "$Date$"[7:-2] # __author__ = "Oleg Broytman " # __copyright__ = "Copyright (C) 2004-2008 PhiloSoft Design" error() { echo "$@" exit 1 } if [ -z "$1" ]; then error "No Subversion URI specified, program aborted" fi umask 022 cd "$HOME/tmp" || exit 1 svn export "$1" bookmarks_db || exit 1 cd bookmarks_db && make fulldistr && \ cd .. && exec rm -rf bookmarks_db