-
Notifications
You must be signed in to change notification settings - Fork 0
/
MameDB.cabal
41 lines (39 loc) · 1.14 KB
/
MameDB.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
name: MameDB
version: 0.1.0.0
synopsis: Tool for manipulating MAME ROMs
-- description:
license: BSD3
license-file: LICENSE
author: Levi Pearson
maintainer: [email protected]
-- copyright:
category: Tools
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable mamedb
main-is: Main.hs
other-modules: MameDb.Types
, MameDb.XmlParse
, MameDb.Database
-- other-extensions:
build-depends: base
, text
, transformers
, resourcet
, conduit
, xml-types
, xml-conduit
, contravariant
, hasql
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
other-modules:
main-is: Test.hs
build-depends: base
build-depends: tasty
, tasty-hspec
hs-source-dirs: tests, src
default-language: Haskell2010