-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbitcoin-script-tools.cabal
61 lines (56 loc) · 1.38 KB
/
bitcoin-script-tools.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
-- vim: set expandtab:
name: bitcoin-script-tools
version: 0.1
cabal-version: >= 1.2
build-type: Simple
homepage: https://en.bitcoin.it/wiki/Script
category: Language
author: Alexander Bernauer <[email protected]>
maintainer: Alexander Bernauer <[email protected]>
license: GPL-3
license-file: LICENSE
description: An inofficial implementation of Bitcoin Script tools
tested-with:
GHC == 6.12.1,
GHC == 7.0.3
data-files:
README.mkd,
INSTALL.mkd,
LICENSE
library
ghc-options: -Wall
hs-source-dirs: src
build-depends:
base == 4.*,
bytestring == 0.9.*,
parsec == 3.1.*,
binary == 0.5.*
exposed-modules:
Language.Bitcoin.Assembler
Language.Bitcoin.Disassembler
Language.Bitcoin.Interpreter
Language.Bitcoin.Parser
Language.Bitcoin.Printer
Language.Bitcoin.Text
Language.Bitcoin.Types
Language.Bitcoin.Utils
executable bitcoin-script
hs-source-dirs: src
main-is: Main.hs
other-modules:
Language.Bitcoin.Main
Language.Bitcoin.Options
build-depends:
base == 4.*
ghc-options: -Wall
executable Test
hs-source-dirs: src, test
main-is: Test.hs
build-depends:
base == 4.*,
HUnit == 1.2.*
other-modules:
Language.Bitcoin.Test.Interpreter
Language.Bitcoin.Test.Parser
Language.Bitcoin.Test.Preprocessor
Language.Bitcoin.Test.Utils