-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18959 from EmileTrotignon/opam-publish-embedded_o…
…caml_templates.0.7 Package embedded_ocaml_templates.0.7
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
packages/embedded_ocaml_templates/embedded_ocaml_templates.0.7/opam
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
opam-version: "2.0" | ||
synopsis: "EML is a simple templating language that lets you generate text with plain OCaml" | ||
description: """ | ||
Inspired by EJS templates, it does currently implements all of its functionnality. | ||
I plan to implement everything eventually, especially if someone actually want to use this. | ||
Please contact me if you find this interesting but there is a missing feature that you need ! | ||
""" | ||
maintainer: "Emile Trotignon [email protected]" | ||
authors: "Emile Trotignon [email protected]" | ||
license: "MIT" | ||
homepage: "https://github.com/EmileTrotignon/embedded_ocaml_templates" | ||
bug-reports: "https://github.com/EmileTrotignon/embedded_ocaml_templates/issues" | ||
dev-repo: "git+https://github.com/EmileTrotignon/embedded_ocaml_templates.git" | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"dune" {>= "2.8.0"} | ||
"sedlex" {>= "2.0"} | ||
"uutf" | ||
"menhir" {>= "20180523"} | ||
"pprint" | ||
"ppxlib" {>= "0.8.0"} | ||
"containers" | ||
"ppx_inline_test" | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
url { | ||
src: | ||
"https://github.com/EmileTrotignon/embedded_ocaml_templates/archive/0.7.tar.gz" | ||
checksum: [ | ||
"md5=c262b84b429163b6441e76554db18104" | ||
"sha512=018abfb99112e355153ff00ecb5199921f01cd1311bc0943c54cba172fe66be72153f69433c3a3b440fecca02ca8be573b59b6419f4329e70dff6b2b67c66f7a" | ||
] | ||
} |