Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv7438/scripts
Added Files:
zisofs-tools
Log Message:
added zisofs-tools and enabled compressed ISO
--- NEW FILE: zisofs-tools ---
#!/bin/bash
# $Source: /cvsroot/devil-linux/build/scripts/zisofs-tools,v $
# $Revision: 1.1 $
# $Date: 2003/11/07 22:58:34 $
#
# http://www.devil-linux.org
# you need the next line, otherwise script won't be executed !!!
# DL-build-system v3
### BEGIN INIT INFO
# Provides: zisofs-tools
# Required-Start: $basebuildtools $libs
# Required-Stop:
# Default-Start: 1
# Default-Stop:
# Description: description
### END INIT INFO
# get the directoryname of the script
MYDIR=${0%/*}
# source functions and config
source $MYDIR/settings
source $MYDIR/functions
case $1 in
build )
./configure --prefix=/usr || exit 1
make $PMAKE all || exit 1
strip_debug
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
;;
* )
echo "ERROR ($0)"
echo "please add parameter so I know what to do"
exit 1
;;
esac
|