packages feed

binembed-0.1.0.3: binembed.cabal

Name:                binembed
Version:             0.1.0.3
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://code.mathr.co.uk/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 && < 4.9,
                     bytestring >= 0.9 && < 0.11,
                     Cabal >= 1.8 && < 1.23
  Exposed-modules:   Data.BinEmbed
                     Distribution.Simple.BinEmbed
  include-dirs:      include
  install-includes:  binembed.h
  GHC-options:       -Wall

Executable binembed
  Build-depends:     base >= 4 && < 4.9,
                     containers >= 0 && < 0.6,
                     directory >= 1 && < 1.3,
                     dlist >= 0.4 && < 0.8,
                     filepath >= 1 && < 1.5
  Main-is:           src/binembed.hs
  GHC-options:       -Wall

Source-repository head
  type:     git
  location: http://code.mathr.co.uk/binembed.git

Source-repository this
  type:     git
  location: http://code.mathr.co.uk/binembed.git
  tag:      v0.1.0.3