~ubuntu-branches/ubuntu/precise/ghc/precise

« back to all changes in this revision

Viewing changes to utils/runghc/runghc.cabal

  • Committer: Bazaar Package Importer
  • Author(s): Joachim Breitner
  • Date: 2011-01-17 12:49:24 UTC
  • Revision ID: james.westby@ubuntu.com-20110117124924-do1pym1jlf5o636m
Tags: upstream-7.0.1
ImportĀ upstreamĀ versionĀ 7.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Name: runghc
 
2
Version: 7.0.1
 
3
Copyright: XXX
 
4
License: BSD3
 
5
-- XXX License-File: LICENSE
 
6
Author: XXX
 
7
Maintainer: XXX
 
8
Synopsis: XXX
 
9
Description:
 
10
        XXX
 
11
Category: Development
 
12
build-type: Simple
 
13
cabal-version: >=1.2
 
14
 
 
15
Flag base3
 
16
    Description: Choose the new smaller, split-up base package.
 
17
 
 
18
Executable runghc
 
19
    Main-Is: runghc.hs
 
20
 
 
21
    if flag(base3)
 
22
        Build-Depends: base       >= 3   && < 5,
 
23
                       directory  >= 1   && < 1.2,
 
24
                       process    >= 1   && < 1.1
 
25
    else
 
26
        Build-Depends: base < 3
 
27
    Build-Depends: filepath
 
28