File: recaptcha.cabal

package info (click to toggle)
haskell-recaptcha 0.1.0.4-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 64 kB
  • sloc: haskell: 56; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 1,304 bytes parent folder | download | duplicates (4)
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
Name:            recaptcha
Version:         0.1.0.4
Cabal-Version:   >= 1.8
Build-Type:      Simple
License:         BSD3
License-File:    LICENSE
Copyright:       (c) 2008 John MacFarlane
Author:          John MacFarlane <jgm@berkeley.edu>
Maintainer:      John MacFarlane <jgm@berkeley.edu>
Stability:       alpha
Category:        Network
Tested-With:     GHC
Homepage:        http://github.com/jgm/recaptcha/tree/master
Synopsis:        Functions for using the reCAPTCHA service in web applications.
Description:     reCAPTCHA (https://www.google.com/recaptcha/intro/) is a
                 service that provides captchas for preventing automated
                 spam in web applications.
                 recaptcha-hs provides functions for using reCAPTCHA in Haskell
                 web applications.
Source-repository head
  type:          git
  location:      git://github.com/jgm/recaptcha.git

Flag network-uri
  Description:   Get Network.URI from the network-uri package
    Default:     True

Library
  Build-Depends: base < 5, HTTP >= 3001.1.4, xhtml >= 3000.0
  if flag(network-uri)
     Build-Depends: network-uri >= 2.6 && < 2.7, network >= 2.6
  else
     Build-Depends: network >= 2 && < 2.6
  Hs-Source-Dirs:  .
  Exposed-Modules: Network.Captcha.ReCaptcha
  Ghc-Options:     -Wall