summaryrefslogtreecommitdiff
path: root/p/haskell-tagsoup/debian/example.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'p/haskell-tagsoup/debian/example.cabal')
-rw-r--r--p/haskell-tagsoup/debian/example.cabal30
1 files changed, 30 insertions, 0 deletions
diff --git a/p/haskell-tagsoup/debian/example.cabal b/p/haskell-tagsoup/debian/example.cabal
new file mode 100644
index 000000000..6a199d2e7
--- /dev/null
+++ b/p/haskell-tagsoup/debian/example.cabal
@@ -0,0 +1,30 @@
+Name: tagsoup
+Version: 0.4
+Copyright: 2006-8, Neil Mitchell
+Maintainer: ndmitchell@gmail.com
+Author: Neil Mitchell
+Homepage: http://www-users.cs.york.ac.uk/~ndm/tagsoup/
+License: BSD3
+Category: XML
+Build-Depends: base, network, mtl, tagsoup
+Build-type: Simple
+Synopsis: Example application using the TagSoup library
+Description:
+ TagSoup is a library for extracting information out of
+ unstructured HTML code, sometimes known as tag-soup. The HTML does
+ not have to be well formed, or render properly within any
+ particular framework. This library is for situations where the
+ author of the HTML is not cooperating with the person trying to
+ extract the information, but is also not trying to hide the
+ information.
+
+ This cabal file is provided for building the tagsoup example
+ application. Use runghc Setup.hs configure; runghc Setup.hs build;
+ runghc Setup.hs install
+
+Executable: tagsoup
+GHC-Options: -Wall
+Main-Is: Main.hs
+Other-Modules:
+ Example.Example
+ Example.Regress