packages feed

geo-uk-0.1.0.2: geo-uk.cabal

name:                geo-uk
version:             0.1.0.2
synopsis:            High precision conversion between GPS and UK Grid
description:         Conversion between GPS and UKGrid Coordinates one approximate and one using table.
homepage:            https://github.com/tolysz/geo-uk
license:             BSD3
license-file:        LICENSE
author:              Marcin Tolysz
maintainer:          tolysz@gmail.com
copyright:           (c) 2015 Marcin Tolysz, (c) Crown copyright, Ordnance Survey and the Ministry of Defence (MOD) 2002. All rights
category:            Data
build-type:          Simple
extra-source-files:  data/GB.dat
cabal-version:       >=1.10

data-files:
   data/GB.dat

Flag embeded
  Description:   Embed Static data
  Default:       False

library
  exposed-modules:     Data.Geo.OSGM02Tab
                       Data.Geo.Type
                       Data.Geo.Point
  if flag(embeded)
      cpp-options: -DEMBEDED_DATA
      build-depends: file-embed

  build-depends: base >=4.7 && < 5
               , array
               , binary
               , bytestring
               , th-lift
               , template-haskell
               , bzlib
  hs-source-dirs:      src
  default-language:    Haskell2010