packages feed

regexdot-0.11.1.2: regexdot.cabal

-- This file is part of RegExDot.
--
-- RegExDot is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- RegExDot is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with RegExDot.  If not, see <http://www.gnu.org/licenses/>.

Name:		regexdot
Version:	0.11.1.2
Cabal-version:	>= 1.10
Copyright:	(C) 2010-2015 Dr. Alistair Ward
License:	GPL
License-file:	LICENSE
Author:		Dr. Alistair Ward
Stability:	stable
Synopsis:	A polymorphic, POSIX, extended regex-engine.
Build-type:	Simple
Description:	Provides a portable, POSIX, extended regex-engine, designed to process a list of /arbitrary/ objects.
Category:	Search, Regex
Tested-with:	GHC == 6.10, GHC == 6.12, GHC == 7.0, GHC == 7.4, GHC == 7.6, GHC == 7.8, GHC == 7.10
Homepage:	http://functionalley.eu/RegExDot/regExDot.html
Maintainer:	mailto <colon> regexdot <at> functionalley <dot> eu
Bug-reports:	mailto <colon> regexdot <at> functionalley <dot> eu

-- None of these files are needed at run-time.
Extra-source-files:
    changelog.markdown
    copyright
    README.markdown

-- Enable using: 'cabal configure -f llvm'.
flag llvm
    Description:	Whether the 'llvm' compiler-backend has been installed and is required for code-generation.
    Manual:		True
    Default:		False

Library
    Default-language:	Haskell2010
    GHC-options:	-Wall -O2 -fno-warn-tabs
    Hs-source-dirs:	src-lib

    Exposed-modules:
        RegExDot.Anchor
        RegExDot.BracketExpression
        RegExDot.BracketExpressionMember
        RegExDot.CompilationOptions
        RegExDot.Consumer
        RegExDot.ConsumptionBounds
        RegExDot.ConsumptionProfile
        RegExDot.DataSpan
        RegExDot.DataSpanTree
        RegExDot.DSL
        RegExDot.ExecutionOptions
        RegExDot.InstanceInt
        RegExDot.Meta
        RegExDot.RegEx
        RegExDot.RegExOpts
        RegExDot.Repeatable
        RegExDot.Result
        RegExDot.ShowablePredicate
        RegExDot.Span
        RegExDot.Tree

    Build-depends:
        base == 4.*,
        deepseq >= 1.1,
        parallel >= 3.0,
        parsec == 3.*,
        toolshed >= 0.13

    if impl(ghc >= 7.4.1)
        GHC-prof-options:	-prof -fprof-auto -fprof-cafs
    else
        GHC-prof-options:	-prof -auto-all -caf-all

    if impl(ghc >= 7.0) && flag(llvm)
        GHC-options:	-fllvm