Initial cut of filemanip library.
This commit is contained in:
commit
488e8ae5dc
2 changed files with 17 additions and 0 deletions
14
FileManip.cabal
Normal file
14
FileManip.cabal
Normal file
|
@ -0,0 +1,14 @@
|
|||
Name: FileManip
|
||||
Version: 0.1
|
||||
License: LGPL
|
||||
Author: Bryan O'Sullivan <bos@serpentine.com>
|
||||
Maintainer: Bryan O'Sullivan
|
||||
Synopsis: File and directory manipulation library for Haskell
|
||||
Category: System
|
||||
Description: A Haskell library for working with files and directories.
|
||||
Includes modules for pattern matching, finding files,
|
||||
and more.
|
||||
Build-Depends: base, filepath, unix
|
||||
Exposed-Modules:
|
||||
System.FilePath.Find,
|
||||
System.FilePath.Glob
|
3
Setup.lhs
Normal file
3
Setup.lhs
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env runhaskell
|
||||
> import Distribution.Simple
|
||||
> main = defaultMain
|
Loading…
Add table
Reference in a new issue