packages feed

bindings-hamlib-0.1.0.0: bindings-hamlib.cabal

name:                bindings-hamlib
version:             0.1.0.0
synopsis:            Hamlib bindings for Haskell
description:         Haskell FFI bindings for hamlib
homepage:            https://github.com/CodeBlock/hamlib-haskell
license:             LGPL-2.1
license-file:        LICENSE
author:              Ricky Elrod
maintainer:          ricky@elrod.me
copyright:           (c) 2014 Ricky Elrod
category:            FFI
build-type:          Simple
extra-source-files:  changelog.md
cabal-version:       >=1.10

library
  exposed-modules:     
                       Bindings.Hamlib.Rig
                     , Bindings.Hamlib.Riglist
                     --, Bindings.Hamlib.Rotator
                     --, Bindings.Hamlib.Rotlist
  -- other-modules:
  c-sources:
                       src/Bindings/Hamlib/Riglist.c
  Include-dirs:        include
  Includes:            Rig.h
                     , rig.h
  Install-includes:    Rig.h
                     , rig.h
  default-extensions:  ForeignFunctionInterface
  build-depends:       base >= 4 && < 5
                     , bindings-DSL >= 1.0.16 && < 1.1
                     --, lens >= 4 && < 5
  Extra-libraries:     hamlib
  hs-source-dirs:      src
  default-language:    Haskell2010
  cc-options:         -fPIC

executable hamlib-hs-demo
  main-is:             Demo.hs
  hs-source-dirs:      src
  build-depends:       base >= 4 && < 5
                     , bindings-hamlib
  default-language:    Haskell2010
  ghc-options:         -Wall -O2

source-repository head
  type: git
  location: git://github.com/CodeBlock/bindings-hamlib
  branch: master