30 lines
980 B
Text
30 lines
980 B
Text
Name: filemanip
|
|
Version: 0.3.5.1
|
|
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.6
|
|
Build-type: Simple
|
|
|
|
Extra-Source-Files: README.markdown
|
|
|
|
Library
|
|
build-depends: base < 5, bytestring, directory, filepath, mtl == 1.1.*, unix-compat
|
|
if !os(windows)
|
|
build-depends: unix
|
|
if impl(ghc >= 6.10)
|
|
build-depends:
|
|
base >= 4
|
|
|
|
GHC-Options: -Wall
|
|
Exposed-Modules:
|
|
System.FilePath.Find,
|
|
System.FilePath.Glob,
|
|
System.FilePath.GlobPattern,
|
|
System.FilePath.Manip
|