1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
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
|