git-annex/git-annex.cabal

112 lines
3.5 KiB
Text
Raw Normal View History

Name: git-annex
2012-09-24 19:20:28 +00:00
Version: 3.20120924
Cabal-Version: >= 1.8
License: GPL
Maintainer: Joey Hess <joey@kitenet.net>
Author: Joey Hess
Stability: Stable
2012-01-15 18:57:52 +00:00
Copyright: 2010-2012 Joey Hess
2012-09-24 19:20:28 +00:00
License-File: COPYRIGHT
Homepage: http://git-annex.branchable.com/
Build-type: Custom
Category: Utility
Synopsis: manage files with git, without checking their contents into git
Description:
git-annex allows managing files with git, without checking the file
contents into git. While that may seem paradoxical, it is useful when
dealing with files larger than git can currently easily handle, whether due
2012-02-15 23:43:15 +00:00
to limitations in memory, time, or disk space.
.
Even without file content tracking, being able to manage files with git,
move files around and delete files with versioned directory trees, and use
branches and distributed clones, are all very handy reasons to use git. And
annexed files can co-exist in the same git repository with regularly
versioned files, which is convenient for maintaining documents, Makefiles,
etc that are associated with annexed files but that benefit from full
revision control.
Flag S3
Description: Enable S3 support
2012-06-17 21:15:56 +00:00
Flag Inotify
Description: Enable inotify support
Flag Dbus
Description: Enable dbus support
Flag Assistant
Description: Enable git-annex assistant and watch command
Flag Webapp
Description: Enable git-annex webapp
2012-09-07 23:44:20 +00:00
Flag Pairing
Description: Enable pairing
2012-09-07 18:54:00 +00:00
Executable git-annex
Main-Is: git-annex.hs
Build-Depends: MissingH, hslogger, directory, filepath,
unix, containers, utf8-string, network, mtl, bytestring, old-locale, time,
pcre-light, extensible-exceptions, dataenc, SHA, process, json, HTTP,
2012-04-22 15:24:39 +00:00
base == 4.5.*, monad-control, transformers-base, lifted-base,
2012-07-26 09:13:27 +00:00
IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process
-- Need to list these because they're generated from .hsc files.
Other-Modules: Utility.Touch Utility.Mounts
2012-07-26 02:04:10 +00:00
Include-Dirs: Utility
C-Sources: Utility/libdiskfree.c Utility/libmounts.c
if (! os(linux))
C-Sources: Utility/libkqueue.c
Extensions: CPP
GHC-Options: -threaded
if flag(S3)
Build-Depends: hS3
CPP-Options: -DWITH_S3
if flag(Assistant)
Build-Depends: stm >= 2.3
CPP-Options: -DWITH_ASSISTANT
if os(linux) && flag(Inotify)
2012-06-17 21:15:56 +00:00
Build-Depends: hinotify
CPP-Options: -DWITH_INOTIFY
else
if (! os(windows))
CPP-Options: -DWITH_KQUEUE
2012-06-17 21:15:56 +00:00
2012-07-26 17:05:52 +00:00
if os(linux) && flag(Dbus)
Build-Depends: dbus
CPP-Options: -DWITH_DBUS
2012-09-07 18:54:00 +00:00
if flag(Webapp) && flag(Assistant)
Build-Depends: yesod, yesod-static, case-insensitive,
http-types, transformers, wai, wai-logger, warp, blaze-builder,
blaze-html, crypto-api, hamlet, clientsession,
template-haskell, yesod-default (>= 1.1.0), data-default
CPP-Options: -DWITH_WEBAPP
2012-09-07 23:44:20 +00:00
if flag(Pairing) && flag(Webapp)
Build-Depends: network-multicast, network-info
CPP-Options: -DWITH_PAIRING
2012-09-07 18:54:00 +00:00
2012-07-26 17:05:52 +00:00
if os(darwin)
CPP-Options: -DOSX
Test-Suite test
Type: exitcode-stdio-1.0
Main-Is: test.hs
2012-04-14 19:23:13 +00:00
Build-Depends: testpack, HUnit, MissingH, hslogger, directory, filepath,
unix, containers, utf8-string, network, mtl, bytestring, old-locale, time,
pcre-light, extensible-exceptions, dataenc, SHA, process, json, HTTP,
2012-04-22 05:49:15 +00:00
base == 4.5.*, monad-control, transformers-base, lifted-base,
IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process
Other-Modules: Utility.Touch
2012-07-26 02:04:10 +00:00
Include-Dirs: Utility
C-Sources: Utility/libdiskfree.c
2012-04-14 19:23:13 +00:00
Extensions: CPP
GHC-Options: -threaded
source-repository head
type: git
location: git://git-annex.branchable.com/