packages feed

freesound-0.0.1: freesound.cabal

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

library
  exposed-modules:  Sound.Freesound
                    Sound.Freesound.Properties
                    Sound.Freesound.Query
  other-modules:    Sound.Freesound.URL
                    Sound.Freesound.Util
  build-depends:    base >= 3,
                    curl == 1.3.*,
                    data-accessor == 0.1.*,
                    data-accessor-template == 0.1.4,
                    directory >= 1,
                    mtl == 1.1.*,
                    xml == 1.3.*

  extensions:       GeneralizedNewtypeDeriving
  
  ghc-options:      -O2 -funbox-strict-fields 

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