diff options
author | AndreasBaldeau <> | 2011-01-08 18:53:39 (GMT) |
---|---|---|
committer | Luite Stegeman <luite@luite.com> | 2011-01-08 18:53:39 (GMT) |
commit | 99633437601957876e84077128bc4cc427004047 (patch) | |
tree | 08b287982b4230d2aea37ddff5493a28026a765a | |
parent | 20a0b559a636aebee9d364f75ffc73511c54f807 (diff) |
-rw-r--r-- | README.md | 18 | ||||
-rw-r--r-- | lambdacat.cabal | 10 |
2 files changed, 26 insertions, 2 deletions
@@ -55,6 +55,24 @@ Lambdacat can be installed from [Hackage](http://hackage.haskell.org) using You can also checkout the sources from github and compile them yourself. +After that the binary of lambdacat can be found in + + ~/.cabal/bin + +For everyday use you should include this path into your PATH enviroment +variable. + +### Installing gtk2hs + +If you have not installed the haskell gtk bindings you should do previous to +the steps above: + + > cabal update + > cabal install gtk2hs-buildtools + > export PATH=$PATH:~/.cabal/bin + + + 4. Configuration ---------------- diff --git a/lambdacat.cabal b/lambdacat.cabal index 5c9913b..8a647d9 100644 --- a/lambdacat.cabal +++ b/lambdacat.cabal @@ -1,15 +1,17 @@ Name: lambdacat -Version: 0.1.0 +Version: 0.1.1 Stability: Alpha Synopsis: Webkit Browser Description: A Browser based on WebKit, concepted to be easy to use and - extendable + extendable. License: BSD3 License-File: LICENSE Build-Type: Simple Author: Andreas Baldeau, Daniel Ehlers Maintainer: Andreas Baldeau <andreas@baldeau.net>, Daniel Ehlers <danielehlers@mindeye.net> +Homepage: http://github.com/baldo/lambdacat +Bug-Reports: http://github.com/baldo/lambdacat/issues Category: User Interfaces Tested-With: GHC == 6.12.3 Cabal-Version: >= 1.6 @@ -22,6 +24,10 @@ Data-Files: lambdacat.glade lambdacat.gtkrc +Source-Repository head + Type: git + Location: git://github.com/baldo/lambdacat.git + Executable lambdacat Main-is: Main.hs |