summaryrefslogtreecommitdiff
path: root/packages/glpk/glpk.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'packages/glpk/glpk.cabal')
-rw-r--r--packages/glpk/glpk.cabal35
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/glpk/glpk.cabal b/packages/glpk/glpk.cabal
new file mode 100644
index 0000000..5df45ca
--- /dev/null
+++ b/packages/glpk/glpk.cabal
@@ -0,0 +1,35 @@
1Name: hmatrix-glpk
2Version: 0.1.0
3License: GPL
4License-file: LICENSE
5Author: Alberto Ruiz
6Maintainer: Alberto Ruiz <aruiz@um.es>
7Stability: experimental
8Homepage: http://code.haskell.org/hmatrix
9Synopsis: Linear Programming based on GLPK
10Description:
11 Simple interface to linear programming functions provided by GLPK.
12
13Category: Math
14tested-with: GHC ==6.10.4
15
16cabal-version: >=1.2
17build-type: Simple
18
19extra-source-files: examples/simplex1.hs
20 examples/simplex2.hs
21 examples/simplex3.hs
22 examples/simplex4.hs
23
24library
25 Build-Depends: base >= 3 && < 5, hmatrix >= 0.8.3
26
27 hs-source-dirs: lib
28
29 Exposed-modules: Numeric.LinearProgramming
30
31 c-sources: lib/Numeric/LinearProgramming/glpk.c
32
33 ghc-options: -Wall
34
35 extra-libraries: glpk