revise .cabal

This commit is contained in:
Jens Petersen 2021-08-04 22:29:11 +08:00
parent a26b1355f7
commit ba7ac87797
1 changed files with 53 additions and 53 deletions

View File

@ -1,53 +1,53 @@
name: curl name: curl
version: 1.3.8 version: 1.3.8
x-revision: 1 x-revision: 1
synopsis: Haskell binding to libcurl synopsis: Haskell binding to libcurl
description: description:
libcurl is a client-side URL transfer library, supporting FTP, FTPS, HTTP, libcurl is a client-side URL transfer library, supporting FTP, FTPS, HTTP,
HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS and FILE. HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS and FILE.
libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading,
HTTP form based upload, proxies, cookies, user+password authentication HTTP form based upload, proxies, cookies, user+password authentication
(Basic, Digest, NTLM, Negotiate, Kerberos4), file transfer resume, (Basic, Digest, NTLM, Negotiate, Kerberos4), file transfer resume,
http proxy tunneling and more! http proxy tunneling and more!
. .
This package provides a Haskell binding to libcurl. This package provides a Haskell binding to libcurl.
category: Network category: Network
license: BSD3 license: BSD3
license-file: LICENSE license-file: LICENSE
author: Sigbjorn Finne author: Sigbjorn Finne
maintainer: Don Stewart <dons00@gmail.com> maintainer: Don Stewart <dons00@gmail.com>
build-type: Configure build-type: Configure
cabal-version: >= 1.6 cabal-version: >= 1.6
extra-source-files: configure, configure.ac, curl.buildinfo.in, CHANGES extra-source-files: configure, configure.ac, curl.buildinfo.in, CHANGES
flag new-base flag new-base
Description: Build with new smaller base library Description: Build with new smaller base library
Default: True Default: True
library library
Exposed-modules: Network.Curl Exposed-modules: Network.Curl
Network.Curl.Code Network.Curl.Code
Network.Curl.Info Network.Curl.Info
Network.Curl.Opts Network.Curl.Opts
Network.Curl.Post Network.Curl.Post
Network.Curl.Types Network.Curl.Types
Network.Curl.Easy Network.Curl.Easy
Network.Curl.Debug Network.Curl.Debug
c-sources: curlc.c c-sources: curlc.c
Extra-libraries: curl Extra-libraries: curl
Extensions: CPP, ForeignFunctionInterface Extensions: CPP, ForeignFunctionInterface
Ghc-options: -Wall Ghc-options: -Wall
Build-Depends: base Build-Depends: base
if flag(new-base) if flag(new-base)
Build-depends: base >= 3 && < 5, containers Build-depends: base >= 3 && < 5, containers
else else
Build-depends: base < 3 Build-depends: base < 3
build-depends: bytestring >= 0.9 build-depends: bytestring >= 0.9
source-repository head source-repository head
type: git type: git
location: git://github.com/galoisinc/curl.git location: git://github.com/galoisinc/curl.git