-
Notifications
You must be signed in to change notification settings - Fork 1
/
bindings-svm.cabal
55 lines (53 loc) · 1.27 KB
/
bindings-svm.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
name: bindings-svm
version: 0.2.1
synopsis: Low level bindings to libsvm.
description:
Low level bindings to libsvm <http://www.csie.ntu.edu.tw/~cjlin/libsvm/>.
.
Changes in version 0.2.1
.
* Exposed `svm_model` internals
.
Changes in version 0.2.0
.
* Updated to libsvm 3.1
.
* Include libsvm with the package
.
* Drop dependency on @pkg-config@
.
Changes in version 0.1.0
.
* Initial version
.
license: BSD3
license-file: LICENSE
author: Paulo Tanimoto <ptanimoto@gmail.com>
Ville Tirronen <aleator@gmail.com>
maintainer: Paulo Tanimoto <ptanimoto@gmail.com>
Ville Tirronen <aleator@gmail.com>
homepage: http://github.com/tanimoto/bindings-svm
bug-reports: http://github.com/tanimoto/bindings-svm/issues
category: FFI
build-type: Simple
cabal-version: >= 1.2.3
library
hs-source-dirs:
src
include-dirs:
cbits/
install-includes:
cbits/svm.h
c-sources:
cbits/svm.cpp
includes:
cbits/svm.h
exposed-modules:
Bindings.SVM
build-depends:
base >= 3 && < 5,
bindings-DSL >= 1.0 && < 1.1
ghc-options:
-Wall
extra-libraries:
stdc++