packages feed

autoproc-0.1.2: autoproc.cabal

name:                autoproc
version:             0.1.2
synopsis:            EDSL for Procmail scripts
description:         Autoproc is a utility which allows you to write an email filterer in an Haskell
                     EDSL (embedded domain specific language); autoproc will then compile
                     it down to a Procmail configuration file (.procmailrc). This file can
                     then be used with Procmail to sort and filter your email before
                     you see it.
category:            System
license:             BSD3
license-file:        LICENSE
author:              Jason Dagit
maintainer:          Gwern Branwen <gwern0@gmail.com>
homepage:            http://code.haskell.org/autoproc

build-type:          Simple
Cabal-Version:       >= 1.2
tested-with:         GHC==6.12.3

data-files:          README

Library
        exposed-modules:     Autoproc.Classifier, Autoproc.Configuration, Autoproc.Run,
                             Autoproc.Procmail, Autoproc.Rules.Dagit, Autoproc.Transform

        build-depends:       base>=4 && <5, mtl, unix, directory, process

        ghc-options:         -Wall
        ghc-prof-options:    -prof -auto-all

Executable autoproc
           main-is:             Main.hs