packages feed

repa-v4l2-0.1.0.0: repa-v4l2.cabal

-- repa-v4l2.cabal auto-generated by cabal init. For additional options,
-- see
-- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr.
-- The name of the package.
Name:                repa-v4l2

-- The package version. See the Haskell package versioning policy
-- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for
-- standards guiding when and how versions should be incremented.
Version:             0.1.0.0

-- A short (one-line) description of the package.
Synopsis:            Provides high-level access to webcams.

-- A longer description of the package.
Description:         The current state is that the library provides a monad for
   grabbing images from a webcam under Linux. In the future, more functionality like 
   image processing functions and other input devices may be added.
   If anyone wants to help, please contact me!

   It has been pointed out on haskell-cafe that the v4l2 package that
   is needed by this package is not (yet?) on hackage. Therefore
   this library is not building on hackage.   

-- The license under which the package is released.
License:             LGPL

-- The file containing the license text.
License-file:        LICENSE

-- The package author(s).
Author:              Christian Gosch

-- An email address to which users can send suggestions, bug reports,
-- and patches.
Maintainer:          github@goschs.de

-- A copyright notice.
-- Copyright:           

Category:            Graphics

Build-type:          Simple

-- Extra files to be distributed with the package, such as examples or
-- a README.
Extra-source-files:  README

-- Constraint on the version of Cabal needed to build this package.
Cabal-version:       >=1.8


copyright: 2011-2012, Christian Gosch
maintainer: Christian Gosch <github@goschs.de>
stability: Experimental
homepage: https://github.com/cgo/hsimage

-- extra-source-files: README

source-repository head
  type: git
  location: git://github.com/cgo/hsimage.git

Library
  hs-source-dirs: src
  -- Modules exported by the library.
  Exposed-modules: Graphics.Webcam.Linux
  Other-modules: Graphics.Webcam.Linux.Internal
  ghc-options: -fllvm  
  
  -- Packages needed in order to build this package.
  Build-depends: base == 4.*,
                 repa >= 3.0,
                 --repa-devil >= 0.1.2,
                 transformers >= 0.2.2,
                 containers >= 0.2,
                 deepseq >= 1.3,
                 v4l2 >= 0.1,
                 mtl >= 2.0.1.0,
                 vector >= 0.9.1,
                 bmp >= 1.2.1,
                 bytestring >= 0.9.2
  
 
  -- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
  -- Build-tools:         
  
Executable example
        main-is: example.hs
        ghc-options: -fllvm -threaded
        build-depends: gloss >= 1.7.2.1,
                       repa-v4l2 >= 0.1,
                       base == 4.*,
                       repa >= 3.1.0.1