From 488e8ae5dc538d447a52f7b3c74c55142c31f75a Mon Sep 17 00:00:00 2001 From: Bryan O'Sullivan Date: Mon, 30 Apr 2007 04:49:33 +0000 Subject: [PATCH] Initial cut of filemanip library. --- FileManip.cabal | 14 ++++++++++++++ Setup.lhs | 3 +++ 2 files changed, 17 insertions(+) create mode 100644 FileManip.cabal create mode 100644 Setup.lhs diff --git a/FileManip.cabal b/FileManip.cabal new file mode 100644 index 0000000..e5b38d8 --- /dev/null +++ b/FileManip.cabal @@ -0,0 +1,14 @@ +Name: FileManip +Version: 0.1 +License: LGPL +Author: Bryan O'Sullivan +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 diff --git a/Setup.lhs b/Setup.lhs new file mode 100644 index 0000000..5bde0de --- /dev/null +++ b/Setup.lhs @@ -0,0 +1,3 @@ +#!/usr/bin/env runhaskell +> import Distribution.Simple +> main = defaultMain