packages feed

hinstaller-2008.2.16: hinstaller.cabal

name:          hinstaller
version:       2008.2.16
stability:     Beta
category:      System
synopsis:      Installer wrapper for Haskell applications
description:
  This module allows you to incorporate arbitrary files into a haskell module
  during compilation. The files are then available to you through functions
  which allows you to write installer-type applications which write out the
  files when run. Thus this can be considered in the same model as Java .jar
  files or executable zip or other file archives.
  .
  The current implementation is now reasonably efficient. However, it does
  require that you have a C compiler installed which can be invoked through
  @cc@.
author:     Matthew Sackman
copyright:  Matthew Sackman
maintainer: Matthew Sackman <matthew@wellquite.org>
homepage:   http://www.wellquite.org/hinstaller/
license:    LGPL
license-file: LICENSE
build-depends: base, template-haskell, directory, process, filepath, Cabal>=1.2.3.0, bytestring
build-type:    Simple
tested-with:   GHC==6.8.2

exposed-modules: System.Installer
other-modules:   System.Installer.TH, System.Installer.Foreign
ghc-options:     -O2 -Wall -fno-warn-name-shadowing
hs-source-dirs:  src, examples
extra-source-files: examples/Example01.hs, examples/file01.txt, examples/file02.txt