2008-02-03 12:53:46 -05:00
|
|
|
Name: FileManip
|
2010-07-10 11:46:29 -04:00
|
|
|
Version: 0.3.3
|
2008-02-03 12:53:46 -05:00
|
|
|
License: BSD3
|
|
|
|
License-File: LICENSE
|
|
|
|
Author: Bryan O'Sullivan <bos@serpentine.com>
|
|
|
|
Maintainer: Bryan O'Sullivan
|
|
|
|
Synopsis: Expressive file and directory manipulation for Haskell.
|
|
|
|
Category: System
|
|
|
|
Description: A Haskell library for working with files and directories.
|
|
|
|
Includes code for pattern matching, finding files,
|
|
|
|
modifying file contents, and more.
|
|
|
|
Cabal-version: >= 1.2
|
2010-03-05 16:19:53 -05:00
|
|
|
Build-type: Simple
|
|
|
|
|
2008-02-03 12:53:46 -05:00
|
|
|
Extra-Source-Files: README
|
2007-11-09 00:39:32 -05:00
|
|
|
|
|
|
|
Flag splitBase
|
|
|
|
Description: Choose the new, split-up base package.
|
|
|
|
|
|
|
|
Library
|
|
|
|
if flag(splitBase)
|
2010-03-05 16:19:53 -05:00
|
|
|
Build-Depends: base >= 2 && < 5, bytestring, directory, filepath, mtl, unix, extensible-exceptions
|
2007-11-09 00:39:32 -05:00
|
|
|
else
|
2010-03-05 16:19:53 -05:00
|
|
|
Build-Depends: base >= 2 && < 5, filepath, mtl, unix, extensible-exceptions
|
2007-11-09 00:39:32 -05:00
|
|
|
|
2010-07-10 11:47:48 -04:00
|
|
|
GHC-Options: -Wall
|
2007-11-09 00:39:32 -05:00
|
|
|
Exposed-Modules:
|
|
|
|
System.FilePath.Find,
|
|
|
|
System.FilePath.Glob,
|
|
|
|
System.FilePath.GlobPattern,
|
|
|
|
System.FilePath.Manip
|
2010-03-05 16:19:53 -05:00
|
|
|
Other-Modules:
|
|
|
|
System.FilePath.Error
|