packages feed

sunroof-examples-0.2: sunroof-examples.cabal

Name:                sunroof-examples
Version:             0.2
Synopsis:            Tests for Sunroof
Homepage:            https://github.com/ku-fpg/sunroof-examples
Bug-reports:         https://github.com/ku-fpg/sunroof-examples
License:             BSD3
License-file:        LICENSE
Author:              Andrew Gill <andygill@ku.edu>, Jan Bracker <jbra@informatik.uni-kiel.de>
Maintainer:          Jan Bracker <jbra@informatik.uni-kiel.de>
Copyright:           (c) 2013 The University of Kansas
Category:            Web, Language, Embedded, Compiler, Javascript
Build-type:          Simple
Cabal-version:       >= 1.10
Description:
  Example applications of the sunroof-compiler and sunroof-server package.

data-files:
-- js
    js/jquery-json.js
    js/jquery-ui.js
    js/jquery.js

-- css
    css/ui-lightness/*.css 
    css/ui-lightness/images/*.png

-- And the individual tests' index files.
    examples/browser-info/index.html
    examples/fib/index.html
    examples/clock/index.html
    examples/canvas/index.html
    examples/unit/index.html

Extra-source-files:
    README.md

source-repository head
  type:     git
  location: git://github.com/ku-fpg/sunroof-examples.git

Executable sunroof-browser-info
    Other-Modules:       Paths_sunroof_examples
    Build-Depends: 
         base                   >= 4.6,
         sunroof-compiler       == 0.2,
         sunroof-server         == 0.2,
         Boolean                >= 0.2,
         semigroups             >= 0.9,
         data-default           >= 0.5
                  
    Main-is: Main.hs
    Hs-Source-Dirs: examples/browser-info
    Ghc-Options: -threaded
    default-language:    Haskell2010

Executable sunroof-canvas
    Build-Depends: 
         base                   >= 4.6,
         sunroof-compiler       == 0.2,
         sunroof-server         == 0.2,
         Boolean                >= 0.2,
         data-default           >= 0.5
                  
    Main-is: Main.hs
    Hs-Source-Dirs: examples/canvas
    Ghc-Options: -threaded
    default-language:    Haskell2010

Executable sunroof-clock
    Build-Depends: 
         base                   >= 4.6,
         sunroof-compiler       == 0.2,
         Boolean                >= 0.2,
         data-default           >= 0.5,
         filepath               >= 0.1
                  
    Main-is: Main.hs
    Hs-Source-Dirs: examples/clock
    Ghc-Options: -threaded
    default-language:    Haskell2010


Executable sunroof-fib
    Build-Depends: 
         base                   >= 4.6,
         sunroof-compiler       == 0.2,
         sunroof-server         == 0.2,
         Boolean                >= 0.2,
         semigroups             >= 0.9,
         data-default           >= 0.5
                  
    Main-is: Main.hs
    Hs-Source-Dirs: examples/fib
    Ghc-Options: -threaded
    default-language:    Haskell2010

Executable sunroof-unit
    Other-Modules:       Paths_sunroof_examples
    Build-Depends: 
         sunroof-compiler       == 0.2,
         sunroof-server         == 0.2,
         Boolean                >= 0.2,
         data-default           >= 0.5,
         semigroups             >= 0.9,
         base                   >= 4.3.1 && < 5,
         parallel-io            >= 0.3.3,
         QuickCheck             >= 2.6,
         containers             >= 0.5,
         stm                    >= 2.4.2,
         random                 >= 1.0.1.1
         
    Main-is: Main.hs
    Hs-Source-Dirs: examples/unit
    Ghc-Options: -threaded
    default-language:    Haskell2010

Executable sunroof-inplace-shaker
    Build-Depends: 
        base                   >= 4.6,
        process                >= 1.1,
        directory              >= 1.2,
        shake                  >= 0.10

    Main-is: Shake.hs
    Ghc-Options: -threaded
    default-language:    Haskell2010