packages feed

diff3-0.2.0.2: diff3.cabal

name:                diff3
version:             0.2.0.2
synopsis:            Perform a 3-way difference of documents
homepage:            http://github.com/ocharles/diff3.git
license:             BSD3
license-file:        LICENSE
author:              Oliver Charles
maintainer: Oliver Charles <ollie@ocharles.org.uk>
category:            Data
build-type:          Simple
cabal-version:       >=1.8
bug-reports: http://github.com/ocharles/diff3/issues
copyright: Copyright (C) 2012 Oliver Charles
synopsis:            Perform a 3-way difference of documents

source-repository head
  type: git
  location: git://github.com/ocharles/diff3.git

library
  exposed-modules:     Data.Algorithm.Diff3
  build-depends:       base >= 4.5 && < 5, Diff >= 0.2
  hs-source-dirs: src
  ghc-options: -Wall -fwarn-tabs -funbox-strict-fields -O2
               -fno-warn-orphans -fno-warn-unused-do-bind


test-suite properties
  type: exitcode-stdio-1.0
  main-is: test/properties.hs
  build-depends:
    base,
    diff3,
    QuickCheck,
    test-framework,
    test-framework-quickcheck2