packages feed

maccatcher-2.1.5: maccatcher.cabal

name:               maccatcher
version:            2.1.5
category:           Text
license:            BSD3
license-file:       LICENSE
author:             Jason Dusek
maintainer:         oss@solidsnack.be
synopsis:           Obtain the host MAC address on *NIX and Windows.
description:
  Obtain the host MAC address on *NIX and Windows.

cabal-version:      >= 1.6
build-type:         Simple
extra-source-files:   README
                    , CONTRIBUTORS
                    , samples

source-repository   head
  type:             git
  location:         http://github.com/solidsnack/maccatcher.git

flag split-base

flag cli
  description:      Enable command line tool.
  default:          False

library
  build-depends:      base >= 3 && < 5
                    , binary
                    , process
                    , parsec
  exposed-modules:  Data.MAC
                    System.Info.MAC
                    System.Info.MAC.Fetch


executable          maccatcher
  main-is:          MACCatcher.hs 
  if flag(cli)
    buildable:      True
  else
    buildable:      False