fb34509cf1
--HG-- extra : convert_revision : 65e5f9c80e000fc9680da857ea7a255f3125b614
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
Name: FileManip
|
|
Version: 0.3.2
|
|
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
|
|
Build-type: Simple
|
|
|
|
Extra-Source-Files: README
|
|
|
|
Flag splitBase
|
|
Description: Choose the new, split-up base package.
|
|
|
|
Library
|
|
if flag(splitBase)
|
|
Build-Depends: base >= 2 && < 5, bytestring, directory, filepath, mtl, unix, extensible-exceptions
|
|
else
|
|
Build-Depends: base >= 2 && < 5, filepath, mtl, unix, extensible-exceptions
|
|
|
|
GHC-Options: -Wall -O2
|
|
Exposed-Modules:
|
|
System.FilePath.Find,
|
|
System.FilePath.Glob,
|
|
System.FilePath.GlobPattern,
|
|
System.FilePath.Manip
|
|
Other-Modules:
|
|
System.FilePath.Error
|