From 52451180867f9eaab5bea8c88f9485ecdd415621 Mon Sep 17 00:00:00 2001 From: PHO Date: Tue, 10 Feb 2009 23:49:31 +0900 Subject: [PATCH 1/1] The skelton. --- .gitignore | 4 ++++ Main.hs | 4 ++++ Setup.lhs | 3 +++ Text/XML/HXT/Compilation.hs | 4 ++++ hxt-compile.cabal | 20 ++++++++++++++++++++ 5 files changed, 35 insertions(+) create mode 100644 .gitignore create mode 100644 Main.hs create mode 100644 Setup.lhs create mode 100644 Text/XML/HXT/Compilation.hs create mode 100644 hxt-compile.cabal diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e854484 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +Setup +*.hi +*.o +dist \ No newline at end of file diff --git a/Main.hs b/Main.hs new file mode 100644 index 0000000..d82a4bd --- /dev/null +++ b/Main.hs @@ -0,0 +1,4 @@ +module Main where + +main :: IO () +main = return () 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 diff --git a/Text/XML/HXT/Compilation.hs b/Text/XML/HXT/Compilation.hs new file mode 100644 index 0000000..9b2f105 --- /dev/null +++ b/Text/XML/HXT/Compilation.hs @@ -0,0 +1,4 @@ +module Text.XML.HXT.Compilation + ( + ) + where diff --git a/hxt-compile.cabal b/hxt-compile.cabal new file mode 100644 index 0000000..a9124df --- /dev/null +++ b/hxt-compile.cabal @@ -0,0 +1,20 @@ +Name: hxt-compile +Version: 0.1 +Synopsis: +Description: +Category: XML +License: PublicDomain +Author: PHO +Maintainer: PHO +Cabal-Version: >= 1.2 +Build-Type: Simple + +Library + Build-Depends: + base + Exposed-Modules: + Text.XML.HXT.Compilation + +Executable hxt-compile + Main-Is: Main.hs + GHC-Options: -Wall -- 2.40.0