packages feed

freesound-0.2.0: freesound.cabal

name:               freesound
version:            0.2.0
synopsis:           Access the Freesound Project database
description:        Access the Freesound Project database. The Freesound
                    Project is a collaborative database of Creative Commons
                    licensed sounds.
                    .
                    <http://www.freesound.org/>
                    .
                    <http://www.creativecommons.org/>
license:            BSD3
license-file:       LICENSE
category:           Sound, Web
copyright:          Copyright (c) Stefan Kersten 2008-2016
author:             Stefan Kersten <kaoskorobase@gmail.com>
maintainer:         Stefan Kersten <kaoskorobase@gmail.com>
stability:          experimental
homepage:           https://github.com/kaoskorobase/freesound
bug-reports:        https://github.com/kaoskorobase/freesound/issues
tested-with:        GHC == 6.10.1, GHC == 6.10.4, GHC == 6.12.1, GHC == 7.10.3
build-type:         Simple
cabal-version:      >= 1.8

extra-source-files:
  CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/kaoskorobase/freesound

library
  exposed-modules:  Sound.Freesound
                    Sound.Freesound.Bookmark
                    Sound.Freesound.List
                    Sound.Freesound.Pack
                    Sound.Freesound.Search
                    Sound.Freesound.Search.Filter
                    Sound.Freesound.Search.Numerical
                    Sound.Freesound.Search.Query
                    Sound.Freesound.Sound
                    Sound.Freesound.User
  other-modules:    Sound.Freesound.API
                    Sound.Freesound.Bookmark.Internal
                    Sound.Freesound.Pack.Type
                    Sound.Freesound.Sound.Type
                    Sound.Freesound.User.Type
  build-depends:    base >= 3 && < 5
                  , aeson >= 0.6
                  , blaze-builder >= 0.3
                  , bytestring >= 0.9
                  , data-default >= 0.5
                  , filepath >= 1.2
                  , http-types >= 0.7
                  , lens
                  , mtl
                  , network >= 2.4
                  , network-uri
                  , old-locale >= 1.0
                  , text >= 0.11
                  , time >= 1.2
                  , transformers >= 0.3
                  , wreq
  hs-source-dirs:   src
  Ghc-Options:      -Wall

-- executable freesound
--   hs-source-dirs:   ., freesound
--   main-is:          Main.hs

test-suite spec
  type:             exitcode-stdio-1.0
  ghc-options:      -Wall
  hs-source-dirs:   test
  main-is:          Spec.hs
  other-modules:    Sound.Freesound.Test
  build-depends:    base == 4.*
                  , data-default
                  , freesound
                  , hspec