Skip to content

Commit e2274b4

Browse files
authored
Merge pull request #28724 from AltGr/opam-publish-ninja_utils.1.0.0
Package ninja_utils.1.0.0
2 parents 4933d14 + ea8ab07 commit e2274b4

File tree

1 file changed

+39
-0
lines changed
  • packages/ninja_utils/ninja_utils.1.0.0

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"Small library used to generate Ninja build files"
4+
description:
5+
"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)"
6+
maintainer: ["[email protected]"]
7+
authors: ["Emile Rolley"]
8+
license: "Apache-2.0"
9+
homepage: "https://github.com/CatalaLang/ninja_utils"
10+
bug-reports: "https://github.com/CatalaLang/ninja_utils/issues"
11+
depends: [
12+
"dune" {>= "2.8"}
13+
"ocaml" {>= "4.12.0"}
14+
"re" {>= "1.10.3"}
15+
"odoc" {with-doc}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
dev-repo: "git+https://github.com/CatalaLang/ninja_utils.git"
32+
url {
33+
src:
34+
"https://github.com/CatalaLang/ninja_utils/archive/refs/tags/1.0.0.tar.gz"
35+
checksum: [
36+
"md5=e71fe8fc11e3a25d6b0b742105035766"
37+
"sha512=6a3cd306742600eb5efc0b3bff8272a0948363ed1ff85ac76d45ebfafd0f188d86aea3103fa8cf72b6c4c97b9fbf19a27da1e3600273072f671e553b270698db"
38+
]
39+
}

0 commit comments

Comments
 (0)