packages feed

xournal-convert-0.1: xournal-convert.cabal

Name:		xournal-convert
Version:	0.1
Synopsis:	convert utility for xoj files
Description: 	convert xoj files into various formats (SVG,SVG+index.html..) 
Homepage:       http://ianwookim.org/hxournal
License: 	BSD3
License-file:	LICENSE
Author:		Ian-Woo Kim
Maintainer: 	Ian-Woo Kim <ianwookim@gmail.com>
Category:       Application
Tested-with:    GHC == 7.0.4
Build-Type: 	Simple
Cabal-Version:  >= 1.8
data-files:     
                template/*.html.st
                CHANGES
Source-repository head
  type: git
  location: http://www.github.com/wavewave/xournal-convert

Executable xournal-convert
  Main-is: xournal-convert.hs
  hs-source-dirs: exe
  ghc-options: 	-Wall -threaded -funbox-strict-fields -fno-warn-unused-do-bind
  ghc-prof-options: -caf-all -auto-all
  Build-Depends: 
                   base == 4.*, 
                   cmdargs >= 0.7 && < 0.10, 
                   xournal-convert

Library
  hs-source-dirs: lib
  ghc-options: 	-Wall -funbox-strict-fields -fno-warn-unused-do-bind
  ghc-prof-options: -caf-all -auto-all
  Build-Depends: 
                   base == 4.*,
                   mtl == 2.*, 
                   directory == 1.1.*, 
                   filepath == 1.2.*,
                   cmdargs >= 0.7 && < 0.10, 
                   HStringTemplate == 0.6.*,
                   xournal-types == 0.2.*,
                   xournal-parser == 0.3.*, 
                   xournal-render == 0.4.*, 
                   cairo == 0.12.*

  Exposed-Modules: 
                   Application.XournalConvert.ProgType
                   Application.XournalConvert.Job
                   Application.XournalConvert.Command
  Other-Modules: 
                   Paths_xournal_convert