From 7cc61dc7f77a2f782406cb1a8ba57f1fd009aff8 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. --HG-- extra : convert_revision : b8e8b5bb7f26a1b0a2322964f2dbe898cb8c6161 --- 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