packages feed

maclight-0.1.0.0: maclight.cabal

name:                maclight
version:             0.1.0.0
synopsis:            Control screen and keyboard backlights on MACs under Linux
homepage:            http://github.com/tych0/maclight
license:             MIT
license-file:        LICENSE
author:              Tycho Andersen
maintainer:          Tycho Andersen <tycho@tycho.ws>
category:            Apple
build-type:          Simple
cabal-version:       >=1.8
bug-reports:         https://github.com/tych0/maclight/issues
description: Maclight is both a library and a command line program for
             controlling the backlight on Macbooks under linux.

source-repository head
  type:              git
  location:          git://github.com/tych0/maclight.git

library
  build-depends: base ==4.*, filemanip >= 0.3, filepath >= 1.3, parsec >= 3.1,
                 strict >= 0.3
  hs-source-dirs: src
  exposed-modules: Apple.Maclight
  ghc-options: -Wall

executable maclight
  main-is: maclight.hs
  hs-source-dirs: src
  build-depends: base ==4.*, filemanip >= 0.3, filepath >= 1.3,
                 optparse-applicative >= 0.5, strict >= 0.3,
                 maclight >= 0.1.0.0
  ghc-options: -Wall

test-suite MaclightTest.hs
  hs-source-dirs: tests
  main-is: MaclightTest.hs
  type: exitcode-stdio-1.0
  build-depends: base ==4.*,
                 maclight >= 0.1.0.0,
                 HUnit,
                 test-framework,
                 test-framework-hunit
  ghc-options: -Wall