~ubuntu-branches/ubuntu/oneiric/haskell-diff/oneiric

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name:                Diff
version:             0.1.2
synopsis:            O(ND) diff algorithm in haskell.
description:         Basic implementation of the standard diff algorithm.
category:            Algorithms
license:             BSD3
license-file:        LICENSE
author:              Sterling Clover
maintainer:          s.clover@gmail.com
Tested-With:         GHC == 6.8.2
Build-Type:          Simple
build-Depends:       base
Cabal-Version:       >= 1.2

flag small-base

library
  if flag(small-base)
    build-depends:     base >= 3, array
  else
    build-depends:     base < 3
  exposed-modules:   Data.Algorithm.Diff
  ghc-options:       -Wall