packages feed

azubi-0.1.0.0: azubi.cabal

-- Initial azubi.cabal generated by cabal init.  For further documentation,
--  see http://haskell.org/cabal/users-guide/

-- The name of the package.
name:                azubi

-- The package version.  See the Haskell package versioning policy (PVP) 
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.1.0.0

-- A short (one-line) description of the package.
synopsis: 
synopsis:            A simple DevOps tool which will "reach" the enterprice level.

-- A longer description of the package.
description:         A simple DevOps tool which will "reach" the enterprice level.
                     It is basically a Haskell lib which you can use to create
                     nice scripts that setup you computer, via ssh bashscrip,
                     Dockerfile, etc

-- URL for the project homepage or repository.
homepage:            http://azubi.github.com

-- The license under which the package is released.
license:             GPL-3

-- The file containing the license text.
license-file:        LICENSE

-- The package author(s).
author:              Ingolf Wagner

-- An email address to which users can send suggestions, bug reports, and 
-- patches.
maintainer:          azubi@ingolf-wagner.de

-- A copyright notice.
-- copyright:           

category:            System

build-type:          Simple

-- Extra files to be distributed with the package, such as examples or a 
-- README.
-- extra-source-files:  

-- Constraint on the version of Cabal needed to build this package.
cabal-version:       >=1.10

tested-With:         GHC == 7.10.3
                   , GHC == 7.10.2
                   , GHC == 7.10.1
                   , GHC == 8.0.1

library
  exposed-modules:     Azubi
  other-modules:       Azubi.Commands.File
                     , Azubi.Commands.Install
                     , Azubi.Commands.Git
                     , Azubi.Commands.Run
                     , Azubi.Commands.Existance
                     , Azubi.Core.Command
                     , Azubi.Core.Context
                     , Azubi.Core.Provision
                     , Azubi.Core.Revertable
                     , Azubi.Core.Syntax
                     , Azubi.Render.BashScript
                     , Azubi.Render.Warez
                     , Azubi.Systems.Gentoo
  hs-source-dirs:      src
  build-depends:       base >=4.7 && < 5
                     , filepath >=1 && < 2
                     , options >= 1.2 && < 2
  default-language:    Haskell2010

source-repository head
  type:              git
  location:          git@github.com:mrVanDalo/azubi.git


executable config
  -- .hs or .lhs file containing the Main module.
  main-is:             config.hs

  -- ghc-options:         -Wall
  -- Modules included in this executable, other than Main.
  -- other-modules:

  -- LANGUAGE extensions used by modules in this package.
  -- other-extensions:

  -- Other library packages from which modules are imported.
  build-depends:       base >=4.7 && < 5
                     , filepath >=1 && < 2
                     , options >= 1.2 && < 2

  -- Directories containing source files.
  hs-source-dirs:      .
                       , src
  
  -- Base language which the package is written in.
  default-language:    Haskell2010


test-suite test
  build-depends:       base       >= 4.7 && < 5
                     , filepath   >=1 && < 2
                     , hspec      >= 2.3

  type:                exitcode-stdio-1.0
  main-is:             Test.hs
  hs-source-dirs:      src test
  default-language:    Haskell2010
  buildable:           True