packages feed

Yablog-0.0.1.2: Yablog.cabal

name:              Yablog
version:           0.0.1.2
license:           BSD3
license-file:      LICENSE
author:            Hiromi ISHII
maintainer:        Hiromi ISHII
synopsis:          A simple blog engine powered by Yesod.
description:       A simple blog engine powered by Yesod.
category:          Web
stability:         Experimental
cabal-version:     >= 1.6
build-type:        Simple
homepage:          http://Yablog.yesodweb.com/

extra-source-files:
  config/models, config/routes, messages/*.msg,
  templates/*.hamlet, templates/*.julius, templates/*.lucius
data-files:
  config/mongoDB.yml, config/settings.yml, config/robots.txt,
  static/css/*.css, static/img/*.png, static/js/*.js
Flag dev
    Description:   Turn on development settings, like auto-reload templates.
    Default:       False

Flag library-only
    Description:   Build for use with "yesod devel"
    Default:       False


library
    if flag(library-only)
        Buildable: True
    else
        Buildable: False

    exposed-modules: Application
    other-modules:   Foundation
                     Import
                     Model
                     Markups
                     Forms
                     Settings
                     Settings.StaticFiles
                     Handler.Root
                     Handler.Blog
                     Handler.User

    ghc-options:   -Wall -threaded -O0
    cpp-options:   -DDEVELOPMENT

    extensions: TemplateHaskell
                QuasiQuotes
                OverloadedStrings
                NoImplicitPrelude
                CPP
                MultiParamTypeClasses
                TypeFamilies
                GADTs
                GeneralizedNewtypeDeriving
                FlexibleContexts
                EmptyDataDecls

executable         Yablog
    if flag(library-only)
        Buildable: False

    if flag(dev)
        cpp-options:   -DDEVELOPMENT
        ghc-options:   -Wall -threaded -O0
    else
        ghc-options:   -Wall -threaded -O2

    main-is:       main.hs

    extensions: TemplateHaskell
                QuasiQuotes
                OverloadedStrings
                NoImplicitPrelude
                CPP
                OverloadedStrings
                MultiParamTypeClasses
                TypeFamilies
                GADTs
                GeneralizedNewtypeDeriving
                FlexibleContexts
                EmptyDataDecls

    build-depends: base                          >= 4          && < 5
                 , yesod-platform                == 1.0.*
                 , yesod                         >= 1.0        && < 1.1
                 , yesod-core                    >= 1.0        && < 1.1
                 , yesod-auth                    >= 1.0        && < 1.1
                 , yesod-static                  >= 1.0        && < 1.1
                 , yesod-default                 >= 1.0        && < 1.1
                 , yesod-form                    >= 1.0        && < 1.1
                 , yesod-newsfeed                >= 1.0        && < 1.1
                 , mime-mail                     >= 0.3.0.3    && < 0.5
                 , clientsession                 >= 0.7.3      && < 0.8
                 , bytestring                    >= 0.9        && < 0.10
                 , blaze-builder                 >= 0.3        && < 0.4
                 , text                          >= 0.11       && < 0.12
                 , persistent                    >= 0.9        && < 0.10
                 , case-insensitive              >= 0.4        && < 0.5
                 , http-types                    >= 0.6        && < 0.7
                 , persistent-mongoDB            >= 0.9        && < 0.10
                 , template-haskell
                 , hamlet                        >= 1.0        && < 1.1
                 , shakespeare-css               >= 1.0        && < 1.1
                 , shakespeare-js                >= 1.0        && < 1.1
                 , shakespeare-text              >= 1.0        && < 1.1
                 , hjsmin                        >= 0.1        && < 0.2
                 , monad-control                 >= 0.3        && < 0.4
                 , wai-extra                     >= 1.2        && < 1.3
                 , yaml                          >= 0.7        && < 0.8
                 , http-conduit                  >= 1.4        && < 1.5
                 , time                          >= 1.2        && < 1.3
                 , old-locale                    >= 1.0        && < 1.1
                 , pandoc                        >= 1.9        && < 1.10
                 , pandoc-types                  >= 1.9        && < 2.0
                 , xml-hamlet                    >= 0.3        && < 0.4
                 , xml-conduit                   >= 0.7        && < 0.8

source-repository head
  type:     git
  location: http://gitweb.konn-san.com/repo/Yablog/tree/master

source-repository this
  type:     git
  location: https://github.com/konn/Yablog
  tag: 0.0.1.2