From: <smi...@us...> - 2003-12-20 02:05:20
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv25688/scripts Added Files: autoconf automake Log Message: - added automake v1.8 to build system - added autoconf v2.58 to build system --- NEW FILE: autoconf --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/autoconf,v $ # $Revision: 1.1 $ # $Date: 2003/12/20 02:05:17 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: autoconf # Required-Start: gcc libtool binutils # 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 --disable-nls || exit 1 make all $PMAKE || exit 1 make install || exit 1 strip_debug ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: automake --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/automake,v $ # $Revision: 1.1 $ # $Date: 2003/12/20 02:05:17 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: automake # Required-Start: gcc libtool binutils autoconf # 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 --disable-nls || exit 1 make all $PMAKE || exit 1 make install || exit 1 strip_debug ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |