mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-09 22:16:10 +03:00
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
# This file is generated by dune, edit dune-project instead
|
|
opam-version: "2.0"
|
|
version: "0.5.0"
|
|
synopsis:
|
|
"A collection of utility functions used to generate Ninja build files"
|
|
description: """
|
|
This library contains the implementations of utility functions used to
|
|
generate Ninja build files -- see https://ninja-build.org. It's currently
|
|
used by the Catala build system (see
|
|
https://github.com/CatalaLang/catala/tree/master/build_system)"""
|
|
maintainer: ["contact@catala-lang.org"]
|
|
authors: ["Denis Merigoux, Nicolas Chataing, Emile Rolley"]
|
|
license: "Apache-2.0"
|
|
homepage: "https://github.com/CatalaLang/catala"
|
|
bug-reports: "https://github.com/CatalaLang/catala/issues"
|
|
depends: [
|
|
"dune" {>= "2.8"}
|
|
"ocaml" {>= "4.11.0"}
|
|
"re" {>= "1.10.3"}
|
|
"catala" {= version}
|
|
"odoc" {with-doc}
|
|
]
|
|
build: [
|
|
["dune" "subst"] {dev}
|
|
[
|
|
"dune"
|
|
"build"
|
|
"-p"
|
|
name
|
|
"-j"
|
|
jobs
|
|
"@install"
|
|
"@runtest" {with-test}
|
|
"@doc" {with-doc}
|
|
]
|
|
]
|
|
dev-repo: "git+https://github.com/CatalaLang/catala.git"
|