packages feed

binembed-0.1.0.2: binembed.cabal

Name:                binembed
Version:             0.1.0.2
Synopsis:            Embed data into object files.
Description:         Given a list of files and directories to include,
                     binembed generates assembly source to include the data
                     into an object file that can be linked to a library or
                     executable, along with interface modules for higher
                     level access from languages such as C, Haskell, ...
                     .
                     See the package 'binembed-example' for a concrete
                     example.
Homepage:            http://gitorious.org/binembed
License:             BSD3
License-file:        LICENSE
Author:              Claude Heiland-Allen
Maintainer:          claude@mathr.co.uk
Category:            Distribution
Build-type:          Simple
Cabal-version:       >=1.6
Extra-source-files:  include/binembed.h

Library
  Build-depends:     base >= 4 && < 5,
                     bytestring >= 0.9 && < 0.11,
                     Cabal >= 1.8 && < 1.17
  Exposed-modules:   Data.BinEmbed
                     Distribution.Simple.BinEmbed
  include-dirs:      include
  install-includes:  binembed.h
  GHC-options:       -Wall
  GHC-prof-options:  -prof -auto-all

Executable binembed
  Build-depends:     base >= 4 && < 5,
                     containers >= 0 && < 1,
                     directory >= 1 && < 2,
                     dlist >= 0.4 && < 0.5,
                     filepath >= 1 && < 2
  Main-is:           src/binembed.hs
  GHC-options:       -Wall
  GHC-prof-options:  -prof -auto-all

Source-repository head
  type:     git
  location: git://gitorious.org/binembed/binembed.git

Source-repository this
  type:     git
  location: git://gitorious.org/binembed/binembed.git
  tag:      v0.1.0.2