packages feed

freesound-0.1.0: freesound.cabal

name:               freesound
version:            0.1.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-2010
author:             Stefan Kersten
maintainer:         Stefan Kersten
stability:          provisional
homepage:           http://code.haskell.org/~StefanKersten/code/freesound
tested-with:        GHC == 6.10.1, GHC == 6.10.4, GHC == 6.12.1
build-type:         Simple
cabal-version:      >= 1.2

library
  exposed-modules:  Sound.Freesound
                    Sound.Freesound.Properties
                    Sound.Freesound.Query
                    Sound.Freesound.Sample
  other-modules:    Sound.Freesound.URL
                    Sound.Freesound.Util
  build-depends:    base >= 3 && < 5
                  , bytestring >= 0.9 && < 1.0
                  , curl >= 1.3 && < 1.4
                  , data-accessor >= 0.1 && < 0.3
                  , data-accessor-template >= 0.1 && < 0.3
                  , directory >= 1
                  , mtl >= 1.1
                  , xml >= 1.3 && < 1.4

  extensions:       GeneralizedNewtypeDeriving

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