[no quickstart, modified igor2.cabal and README
martin.hofmann@uni-bamberg.de**20090526102356] hunk ./README 15
+URL:
+   	 http://www.cogsys.wiai.uni-bamberg.de/effalip/download.html
hunk ./README 22
-     ./quickstart           -- a shell script for the impatient
hunk ./README 48
-First, get the most recent Cabal package from:
+Igor2 come as a Cabal package. To install Igor2 ghc-6.10 is required. To resolve all 
+direct and indirect package dependencies the command line interface of Cabal is 
+highly recommended. An installation guide to for ghc-6.10 with cabal-install can 
+be found at:
hunk ./README 53
-	http://www.cogsys.wiai.uni-bamberg.de/effalip/download.html
+	http://www.cogsys.wiai.uni-bamberg.de/effalip/installguide.html .
+	
+Assuming you have ghc-6.10 and cabal-install already, substitute <version number> 
+with an actual version number of a package at
hunk ./README 58
-To install Igor2 unzip the Cabal packages below and change to the created directory. Then 
-choose one of the two alternatives to install Igor2. Note that at least ghc-6.10 is required.
+	http://www.cogsys.wiai.uni-bamberg.de/effalip/download.html
hunk ./README 60
-   1. Use the cabal build system to configure, build, and install the executable into ~/bin/ 
-      'by hand'. You may use the script 'quickstart' included in the package.
+and execute the following commands to install Igor2 locally.
hunk ./README 62
-      runhaskell Setup configure --prefix=$HOME --user
-      runhaskell Setup build
-      runhaskell Setup install
-      
-   2. Alternatively, you can install Igor2 via cabal-install, the command-line tool of 
-      Cabal. This should automatically install all packages, Igor2 depends on.
-     
-     cabal install
+	igor2v=<version number>
+	wget http://www.cogsys.wiai.uni-bamberg.de/darcs/igor2+/dist/igor2-$igor2v.tar.gz
+	tar zxvf igor2-$igor2v.tar.gz
+	pushd igor2-$igor2v/
+	cabal update
+	cabal install
+	popd
+	rm igor2-$igor2v.tar.gz
+	rm -Rf igor2-$igor2v/
hunk ./README 123
-     ./quickstart
hunk ./igor2.cabal 25
-                          -- syb, 
+                          haskell-src>=1.0, 
+                          haskell-src-exts>=0.4, 
hunk ./igor2.cabal 46
-                          haskell-src>=1.0, 
hunk ./igor2.cabal 50
-                          haskell-src-exts>=0.4, 
hunk ./quickstart 1
-#!/bin/bash
-
-runghc Setup configure --prefix=$HOME --user
-runghc Setup build
-runghc Setup install --user
-igor2 -b expl/batch.txt
rmfile ./quickstart