Skip to content

Commit

Permalink
Rearrange the .cabal file a bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncan Coutts committed Aug 23, 2008
1 parent 32a344c commit ace670a
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions hackport.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,38 @@ Name: HackPort
Version: 0.2.1
License: GPL
Author: Henning Günther
Maintainer: Gentoo Haskell team <haskell@gentoo.org>
Category: Distribution
Synopsis: Hackage and Portage integration tool
Description: A command line tool to manage an overlay of Gentoo ebuilds
that are generated from a hackage repo of Cabal packages.
Build-Type: Simple
Cabal-Version: >=1.2

Flag split-base

Executable hackport
Main-Is: Main.hs
Build-Depends: base >= 2.0, filepath, parsec, mtl, network, regex-compat,
Cabal >= 1.2 && < 1.3, HTTP >= 3000 && < 3002, zlib, tar
Build-Depends:
base >= 2.0,
filepath,
parsec,
mtl,
network,
regex-compat,
Cabal >= 1.2 && < 1.3,
HTTP >= 3000 && < 3002,
zlib,
tar

if flag(split-base)
Build-Depends: base >= 3, directory, containers, process, old-time, bytestring
Build-Depends:
base >= 3,
directory,
containers,
process,
old-time,
bytestring
else
Build-Depends: base < 3

Expand Down

0 comments on commit ace670a

Please sign in to comment.