Build with GHC 6.8.1.
--HG-- extra : convert_revision : 87b71debe80aa21e0a6bc03f7fb871f5ec9a52ca
This commit is contained in:
parent
e8644cb930
commit
258fcb3587
1 changed files with 29 additions and 19 deletions
|
@ -1,19 +1,29 @@
|
|||
Name: FileManip
|
||||
Version: 0.2
|
||||
License: LGPL
|
||||
License-File: COPYING.LIB
|
||||
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.
|
||||
Build-Depends: base, filepath, mtl, unix
|
||||
GHC-Options: -Wall -O2
|
||||
Exposed-Modules:
|
||||
System.FilePath.Find,
|
||||
System.FilePath.Glob,
|
||||
System.FilePath.GlobPattern,
|
||||
System.FilePath.Manip
|
||||
Extra-Source-Files: README
|
||||
Name: FileManip
|
||||
Version: 0.2
|
||||
License: LGPL
|
||||
License-File: COPYING.LIB
|
||||
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
|
||||
|
||||
Flag splitBase
|
||||
Description: Choose the new, split-up base package.
|
||||
|
||||
Library
|
||||
if flag(splitBase)
|
||||
Build-Depends: base, bytestring, directory, filepath, mtl, unix
|
||||
else
|
||||
Build-Depends: base, filepath, mtl, unix
|
||||
|
||||
GHC-Options: -Wall -O2
|
||||
Exposed-Modules:
|
||||
System.FilePath.Find,
|
||||
System.FilePath.Glob,
|
||||
System.FilePath.GlobPattern,
|
||||
System.FilePath.Manip
|
||||
Extra-Source-Files: README
|
||||
|
|
Loading…
Add table
Reference in a new issue