packages feed

hfov-1.0.2: hfov.cabal

-- Initial hfov.cabal generated by cabal init.  For further documentation, 
-- see http://haskell.org/cabal/users-guide/

-- The name of the package.
name:                hfov

-- The package version.  See the Haskell package versioning policy (PVP) 
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             1.0.2

-- A short (one-line) description of the package.
synopsis:        Field-of-view calculation for low-resolution 2D raster grids.

-- A longer description of the package.
description:     A Haskell binding to a Field of View calculation library
                 written by Greg McIntyre (blue_puyo) in C.

-- URL for the project homepage or repository.
homepage:            https://github.com/nornagon/hfov

-- The license under which the package is released.
license:             BSD3

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

-- The package author(s).
author:              Jeremy Apthorp

-- An email address to which users can send suggestions, bug reports, and 
-- patches.
maintainer:          nornagon@nornagon.net

-- A copyright notice.
-- copyright:           

category:            Game

build-type:          Simple

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

extra-source-files: cfov.h
source-repository head
  type: git
  location: https://github.com/nornagon/hfov

library
  -- Modules exported by the library.
  exposed-modules:     FOV
  c-sources: cfov.c
  includes: cfov.h
  extensions: CPP, ForeignFunctionInterface
  include-dirs: .
  ghc-options: -Wall
  
  -- Modules included in this library but not exported.
  -- other-modules:       
  
  -- Other library packages from which modules are imported.
  build-depends:       base ==4.6.*
  
  -- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
  build-tools:         hsc2hs