Name: hake Version: 0.1 License: GPL License-file: LICENSE Author: Yoshikuni Jujo Maintainer: Yoshikuni Jujo Category: Development Synopsis: ruby : rake = haskell : hake Description: Like ruby's rake, hake have Hakefile which is Haskell source. . And Hakefile is like rake's Rakefile, and make's Makefile. . Hakefile is just Haskell source code, then you can use all Haskell features. . > import Development.Hake > hake_tree = [ > > dflt [ "greeting" ] > , > file ( [ "greeting", "greeting.log" ], [ "hello.o", "good-bye.o" ] , > [ "linker -o greeting hello.o good-bye.o" ] ) > , > rule ( ".o", ".sfx1", > \t s -> [ "compiler1 " ++ s ++ " -o " ++ t ] ) > , > rule ( ".o", ".sfx2", > \t s -> [ "compiler2 " ++ s ++ " -o " ++ t ] ) > , > task ( "clean" , [ "rm -f *.o greeting greeting.log" ] ) > > ] > > main = hake hake_tree Stability: experimental Homepage: http://homepage3.nifty.com/salamander/second/projects/hake/index.xhtml Package-Url: http://homepage3.nifty.com/salamander/second/portage/distfiles/hake-0.0.tar.gz Cabal-Version: >= 1.2 Build-type: Simple Tested-With: GHC Data-Files: Extra-Source-Files: Extra-Tmp-Files: Library GHC-Options: -Wall -- CPP-Options: -DDEBUG Build-Depends: base, old-time, mtl Exposed-Modules: Development.Hake Other-Modules: Development.Hake.HiddenTools Executable hake GHC-Options: -Wall -- CPP-Options: -DDEBUG Build-Depends: directory, process, yjtools Other-Modules: Development.Hake.HiddenTools Main-Is: Main.hs