packages feed

bidirectionalization-combined-0.1: bidirectionalization-combined.cabal

Name:                bidirectionalization-combined
Version:             0.1
Synopsis:            Prototype Implementation of Combining Syntatic and Semantic Bidirectionalization (ICFP'10)
Description:         This is a prototype implementation of the idea presented 
                     in Combining Syntatic and Semantic Bidirectionalization 
                     by Janis Voigtlaender, Zhenjiang Hu, Kazutaka Matsuda 
                     and Meng Wang.
		     .
		     This package builds two executables to experiment with the system,
		     a command line program "b18-combined" and a CGI based web interface
		     "b18n-combined-cgi". The latter is also available on
		     http://www.kb.ecei.tohoku.ac.jp/~kztk/b18n-combined/
License:             PublicDomain
Author:              Kazutaka Matsuda, Joachim Breitner
Maintainer:          kztk@kb.ecei.tohoku.ac.jp
Homepage:	     http://www.kb.ecei.tohoku.ac.jp/~kztk/b18n-combined/desc.html
Category:            Language
Build-type:          Simple
Cabal-version:       >=1.6
Extra-source-files:  example/*.txt BundledCode.hsb JQuery.hsb jquery.min.js README
Data-files:          BUtil.hs

source-repository head
  type:     darcs
  location: http://www.kb.ecei.tohoku.ac.jp/~kztk/darcs/sem_syn/

Executable b18n-combined
  Main-is: Main.hs            
  Build-depends: base >=4 && <5, mtl, template-haskell, containers, pretty, parsec
  Other-modules: Util, AST, Parser, Type, Shapify, CodeGen, SemSyn

Executable b18n-combined-cgi
  Main-is: b18n-combined-cgi.hs
  Build-depends: base >=4 && <5, mtl, template-haskell, containers, pretty, directory,
                 parsec, xhtml, cgi, utf8-string, bytestring,
                 unix, hint >= 0.3.2
  Other-modules: Util, AST, Parser, Type, Shapify, CodeGen, SemSyn,
                 MyInterpret, BundledCode, JQuery