1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Source: cpphs
Section: devel
Priority: optional
Maintainer: Ian Lynagh (wibble) <igloo@debian.org>
Standards-Version: 3.6.1
Build-Depends: debhelper (>= 4), ghc6 [alpha hppa i386 ia64 m68k powerpc s390 sparc] | nhc98 [arm hppa i386 m68k mips mipsel powerpc s390 sparc] | hugs [alpha arm hppa i386 ia64 m68k mips mipsel powerpc s390 sparc] | ghc6 | nhc98 | hugs, ghc6 [alpha hppa i386 ia64 m68k powerpc s390 sparc] | hmake [arm hppa i386 m68k mips mipsel powerpc s390 sparc] | hugs [alpha arm hppa i386 ia64 m68k mips mipsel powerpc s390 sparc] | ghc6 | hmake | hugs
Package: cpphs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, ${hugs}
Suggests: ghc6 | nhc98 | hugs
Description: Simplified cpp-a-like preprocessor for Haskell
The C pre-processor has been widely used in Haskell source code. It
enables conditional compilation for different compilers, different
versions of the same compiler, and different OS platforms. It is also
occasionally used for its macro language, which can enable certain
forms of platform-specific detail-filling, such as the tedious
boilerplate generation of instance definitions and FFI declarations.
.
However, gcc's cpp has recently been evolving to more strictly adhere
to the C standard. This has had the effect of making it increasingly
incompatible with Haskell's syntax. This is a cpp-a-like designed with
Haskell's syntax in mind.
|