ffeb060002
This allows me to not build-depend on blaze-markup, which was causing me some trouble when tring to build with cabal on debian. Seems debian ships Text.Blaze.Renderer.String in two packages.
102 lines
3.2 KiB
Text
102 lines
3.2 KiB
Text
Name: git-annex
|
|
Version: 3.20120722
|
|
Cabal-Version: >= 1.8
|
|
License: GPL
|
|
Maintainer: Joey Hess <joey@kitenet.net>
|
|
Author: Joey Hess
|
|
Stability: Stable
|
|
Copyright: 2010-2012 Joey Hess
|
|
License-File: GPL
|
|
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
|
|
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
|
|
|
|
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
|
|
|
|
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,
|
|
base == 4.5.*, monad-control, transformers-base, lifted-base,
|
|
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
|
|
Include-Dirs: Utility
|
|
C-Sources: Utility/libdiskfree.c Utility/libmounts.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)
|
|
Build-Depends: hinotify
|
|
CPP-Options: -DWITH_INOTIFY
|
|
else
|
|
if (! os(windows))
|
|
CPP-Options: -DWITH_KQUEUE
|
|
|
|
if os(linux) && flag(Dbus)
|
|
Build-Depends: dbus
|
|
CPP-Options: -DWITH_DBUS
|
|
|
|
if flag(Webapp)
|
|
Build-Depends: yesod, yesod-static, yesod-default, case-insensitive,
|
|
http-types, transformers, wai, wai-logger, warp, blaze-builder,
|
|
blaze-html, crypto-api, hamlet, clientsession,
|
|
template-haskell
|
|
CPP-Options: -DWITH_WEBAPP
|
|
|
|
if os(darwin)
|
|
CPP-Options: -DOSX
|
|
|
|
Test-Suite test
|
|
Type: exitcode-stdio-1.0
|
|
Main-Is: test.hs
|
|
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,
|
|
base == 4.5.*, monad-control, transformers-base, lifted-base,
|
|
IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process
|
|
Other-Modules: Utility.Touch
|
|
Include-Dirs: Utility
|
|
C-Sources: Utility/libdiskfree.c
|
|
Extensions: CPP
|
|
GHC-Options: -threaded
|
|
|
|
source-repository head
|
|
type: git
|
|
location: git://git-annex.branchable.com/
|