From: Serge L. <sma...@us...> - 2009-12-07 20:39:18
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv4844/scripts Added Files: libnl Log Message: - added libnl ( a requirement for new ipvsadm ) --- NEW FILE: libnl --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/libnl,v $ # $Revision: 1.1 $ # $Date: 2009/12/07 20:39:08 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: libnl # Required-Start: $basebuildtools glibc # Required-Stop: # Default-Start: 1 # Default-Stop: # Description: ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) ./configure --prefix=/usr || exit 1 make $PMAKE || 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 |