[batren-cvs] batren INSTALL,1.2,1.3
Brought to you by:
cstroie
|
From: Costin S. <cs...@us...> - 2006-11-28 15:43:15
|
Update of /cvsroot/batren/batren In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32656 Modified Files: INSTALL Log Message: Detailed how to run from the extracted dir. Index: INSTALL =================================================================== RCS file: /cvsroot/batren/batren/INSTALL,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- INSTALL 16 Aug 2006 10:20:15 -0000 1.2 +++ INSTALL 28 Nov 2006 15:43:10 -0000 1.3 @@ -1,10 +1,37 @@ +BatRen is a shell script. You do not need to install it to run. For +a quick test, just run it from its current directory. + +First, unpack the archive (replace the version number with the correct +one) and enter the directory + +$ tar xzf batren-0.3.1.tar.gz +$ cd batren-0.3.1 + +Then run the program (assuming bash is your shell) + +$ $PATH_TO_BATREN_DIR/batren + +Please see the README file for details on BatRen usage. + + Install -------- -To perform an installation with default options, a 'make install' is enough. -If you like, parameters can be specified in the command line, like -'make install prefix=/usr/bin'. +======= + +To perform an installation with default options, run the next command as +root. + +# make install + +If you like, parameters can be specified in the command line, like this. + +# make prefix=/usr/bin install + Uninstall ---------- -Typing 'make uninstall' (with or without some parameters in the command line), -will perform the uninstall process. +========= + +To perform the uninstall process, type the next command (with or without +some parameters in the command line) as root. + +# make uninstall + |