1
0
forked from GitHub/gf-core

Update pgf2.cabal, including bumping version to 2.0.0

This commit is contained in:
John J. Camilleri
2021-08-13 10:20:49 +02:00
parent f35dff7c66
commit 3e7926f22d

View File

@@ -1,34 +1,51 @@
name: pgf2 name: pgf2
version: 0.1.0.0 version: 2.0.0
-- synopsis:
-- description: cabal-version: 1.22
homepage: http://www.grammaticalframework.org build-type: Simple
license: LGPL-3 license: LGPL-3
--license-file: LICENSE license-file: LICENSE
author: Krasimir Angelov, Inari category: Natural Language Processing
maintainer: -- synopsis: Bindings to the C version of the PGF runtime
-- copyright: -- description:
category: Language -- GF, Grammatical Framework, is a programming language for multilingual grammar applications.
build-type: Simple -- GF grammars are compiled into Portable Grammar Format (PGF) which can be used with the PGF runtime, written in C.
extra-source-files: README -- This package provides Haskell bindings to that runtime.
cabal-version: >=1.10 homepage: https://www.grammaticalframework.org/
bug-reports: https://github.com/GrammaticalFramework/gf-core/issues
author: Krasimir Angelov
-- tested-with: GHC==7.10.3, GHC==8.0.2, GHC==8.10.4
extra-source-files:
CHANGELOG.md
README.md
library library
exposed-modules: PGF2, PGF2.Internal, exposed-modules:
-- backwards compatibility API: PGF2,
PGF PGF2.Internal,
other-modules: PGF2.FFI, PGF2.Expr, PGF2.Type -- backwards compatibility API:
build-depends: base >=4.3, containers, pretty, array, random PGF
-- hs-source-dirs: other-modules:
default-language: Haskell2010 PGF2.FFI,
build-tools: hsc2hs PGF2.Expr,
PGF2.Type
extra-libraries: pgf build-depends:
cc-options: -std=c99 base >= 4.3, -- >= 4.9.1 && < 4.15,
c-sources: utils.c containers, -- >= 0.5.7 && < 0.7,
pretty, -- >= 1.1.3 && < 1.2,
array,
random
default-language: Haskell2010
build-tools: hsc2hs
extra-libraries: pgf
cc-options: -std=c99
c-sources: utils.c
test-suite basic test-suite basic
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
main-is: tests/basic.hs main-is: tests/basic.hs
default-language: Haskell2010 default-language: Haskell2010
build-depends: base, HUnit, pgf2 build-depends:
base,
HUnit,
pgf2 >= 2.0.0