packages feed

bindings-svm-0.2.1: bindings-svm.cabal

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++