-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathghc-xcode.cabal
35 lines (31 loc) · 1.53 KB
/
ghc-xcode.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Name: ghc-xcode
Version: 0.1
Synopsis: Helper tool for integrating Haskell into the XCode build process.
Description: The ghc-xcode program makes it easier to develop
graphical Haskell applications on OS X and iOS.
It integrates into the XCode build system as a custom build
phase. The programmer uses @foreign export@
declarations to export a C API for their Haskell
code. The ghc-xcode program ensures that all of the
necessary object files will be compiled and linked together
with the rest of the XCode project.
.
This package has only been tested with XCode-4.1. It also
currently requires ghc-7.2 or later.
License: BSD3
License-file: LICENSE
Author: Judah Jacobson
Maintainer: [email protected]
Copyright: (c) Judah Jacobson 2011
Category: Development
Build-type: Simple
Homepage: https://github.com/judah/ghc-xcode
Cabal-version: >=1.6
Executable ghc-xcode
Main-is: Main.hs
Build-depends: base>=4.5 && < 4.6, ghc>=7.4 && < 7.6, containers==0.4.*,
filepath>=1.2 && < 1.4, ghc-paths==0.1.*,
text==0.11.*, bytestring==0.9.*,
executable-path==0.0.*, pretty==1.1.*,
unix==2.5.*, directory==1.1.*
Extensions: ScopedTypeVariables