]> gitweb @ CieloNegro.org - hxt-compile.git/commitdiff
The skelton.
authorPHO <pho@cielonegro.org>
Tue, 10 Feb 2009 14:49:31 +0000 (23:49 +0900)
committerPHO <pho@cielonegro.org>
Tue, 10 Feb 2009 14:49:31 +0000 (23:49 +0900)
.gitignore [new file with mode: 0644]
Main.hs [new file with mode: 0644]
Setup.lhs [new file with mode: 0644]
Text/XML/HXT/Compilation.hs [new file with mode: 0644]
hxt-compile.cabal [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..e854484
--- /dev/null
@@ -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 (file)
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 (file)
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 (file)
index 0000000..9b2f105
--- /dev/null
@@ -0,0 +1,4 @@
+module Text.XML.HXT.Compilation
+    (
+    )
+    where
diff --git a/hxt-compile.cabal b/hxt-compile.cabal
new file mode 100644 (file)
index 0000000..a9124df
--- /dev/null
@@ -0,0 +1,20 @@
+Name:                hxt-compile
+Version:             0.1
+Synopsis:            <Project description>
+Description:         <Project description>
+Category:            XML
+License:             PublicDomain
+Author:              PHO <pho at cielonegro.org>
+Maintainer:          PHO <pho at cielonegro.org>
+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