texbuilder-0.1.1.2: texbuilder.cabal
-- Initial tex-builder.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: texbuilder
version: 0.1.1.2
synopsis: View your latex output while editing
description:
This program allows you to view your latex document in your pdf viewer while
editing it in your favorite editor. When you save your document, this program
will recompile it, overwrite the output pdf file and send a signal to your
pdf reader to reload the file. This effectively allows for a
"continous preview"-like experience.
This will run on Linux only at the moment.
homepage: https://gitlab.com/xaverdh/tex-builder#texbuilder
license: GPL-3
license-file: LICENSE
author: Dominik Xaver Hörl
maintainer: Dominik Xaver Hörl
-- copyright:
category: LaTeX
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
executable texbuilder
main-is: Main.hs
other-modules: TexBuilder.CompileThread
other-modules: TexBuilder.Engine
other-modules: TexBuilder.ChooseEngine
other-modules: TexBuilder.FileFilters
other-modules: TexBuilder.TexBuilder
other-modules: TexBuilder.Utils.BinSem
other-modules: TexBuilder.Utils.File
other-modules: TexBuilder.Utils.Hashing
other-modules: TexBuilder.Utils.Inotify
other-modules: TexBuilder.ViewThread
other-modules: TexBuilder.Watches
other-extensions: OverloadedStrings
other-extensions: LambdaCase
other-extensions: PackageImports
build-depends: base >=4.9 && <4.11
build-depends: optparse-applicative >=0.13 && <0.15
build-depends: unix >=2.7 && <2.8
build-depends: process >=1.4 && <1.7
build-depends: hinotify >=0.3 && <0.4
build-depends: directory >=1.3 && <1.4
build-depends: filepath >=1.4 && <1.5
build-depends: temporary >=1.2 && <1.3
build-depends: mtl >= 2.2.1 && < 2.3
build-depends: bytestring >= 0.10.8 && < 0.11
build-depends: containers >= 0.5.7 && < 0.6
build-depends: cryptonite >= 0.23 && <= 0.24
build-depends: deepseq >= 1.4.2 && < 1.5
build-depends: ansi-wl-pprint >= 0.6.8 && < 0.7
build-depends: extra >= 1.5.3 && < 1.7
-- hs-source-dirs:
default-language: Haskell2010
source-repository head
type: git
location: https://gitlab.com/xaverdh/tex-builder/