packages feed

utf8-prelude-0.1: utf8-prelude.cabal

name:           utf8-prelude
version:        0.1
synopsis:       Prelude and System.IO using UTF8 encoding
description:    
    This package contains the "UTF8Prelude" and "System.UTF8IO" library modules and the 'utf8-test' executable.
    .
    The 'utf8-test' executable tests some functions (@readFile@, @writeFile@, @putStrLn@).
    .
    Note: 'utf8-test' creates a file named 'writeFile_test.txt' in the current working directory.
    .
    This package is based on the 'utf8-string' package: <http://hackage.haskell.org/cgi-bin/hackage-scripts/package/utf8-string>. 
    .
    This package will be obsolate with GHC if GHC will have porper unicode support for text I/O 
    (planned beyond GHC 6.10, see <http://hackage.haskell.org/trac/ghc/wiki/Status/Releases>).
category:       System
author:         Péter Diviánszky <divip@aszt.inf.elte.hu>
maintainer:     Péter Diviánszky <divip@aszt.inf.elte.hu>
copyright:      (c) 2008 by Péter Diviánszky
license:        BSD3
license-file:   LICENSE
stability:      alpha
tested-with:    GHC == 6.8.2
build-type:     Simple
cabal-version:  >=1.2
data-files:     readFile_test.txt,
                putStrLn_test.txt

library
    ghc-options:    -Wall
    build-depends:
        base,
        utf8-string

    exposed-modules:
        UTF8Prelude,
        System.UTF8IO

executable utf8-test
    ghc-options:    -Wall
    main-is:        Test.hs