-
Notifications
You must be signed in to change notification settings - Fork 6
/
text-icu-translit.cabal
61 lines (49 loc) · 1.68 KB
/
text-icu-translit.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
name: text-icu-translit
version: 0.1.0.7
synopsis: ICU transliteration
description:
Bindings to the transliteration features by the
International Components for Unicode (ICU) library
license: BSD3
license-file: LICENSE
author: Antonio Nikishaev
maintainer: Antonio Nikishaev <[email protected]>
copyright: 2014 Antonio Nikishaev
bug-reports: https://github.com/llelf/text-icu-translit/issues
category: Text
build-type: Simple
cabal-version: >=1.10
extra-source-files: include/trans.h
library
exposed-modules: Data.Text.ICU.Translit,
Data.Text.ICU.Translit.IO
other-modules: Data.Text.ICU.Translit.ICUHelper
ghc-options: -Wall
c-sources: cbits/trans.c
include-dirs: include
extra-libraries: icuuc
if os(mingw32)
extra-libraries: icuin icudt
else
extra-libraries: icui18n icudata
-- other-extensions:
build-depends: base >=4 && <5, text >= 1.0
-- hs-source-dirs:
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: tests
main-is: Test.hs
build-depends: base, text,
text-icu >= 0.6.3,
text-icu-translit,
QuickCheck >= 2.4,
test-framework >= 0.8,
test-framework-quickcheck2 >= 0.3
source-repository head
type: darcs
location: http://hub.darcs.net/lelf/text-icu-translit
source-repository head
type: git
location: https://github.com/llelf/text-icu-translit