-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'anton-trunov/opam'
- Loading branch information
Showing
1 changed file
with
16 additions
and
11 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,20 +1,25 @@ | ||
opam-version: "1.2" | ||
opam-version: "2.0" | ||
maintainer: "stephen.dolan@cl.cam.ac.uk" | ||
authors: ["Stephen Dolan"] | ||
homepage: "https://github.com/stedolan/malfunction" | ||
bug-reports: "https://github.com/stedolan/malfunction/issues" | ||
dev-repo: "https://github.com/stedolan/malfunction.git" | ||
license: "LGPL" | ||
build: | ||
[[ "jbuilder" "build" "--only-packages" "%{name}%" "--root" "." "-j" jobs "@install" ]] | ||
build-test: | ||
[[ "jbuilder" "build" "--only-packages" "%{name}%" "--root" "." "-j" jobs "@runtest" ]] | ||
available: [ ocaml-version >= "4.04" ] | ||
dev-repo: "git+https://github.com/stedolan/malfunction.git" | ||
license: "LGPL-2.0-or-later" | ||
build: [ | ||
[ "dune" "build" "-p" name "-j" jobs ] | ||
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test} | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.04"} | ||
"ocamlfind" | ||
"dune" {build} | ||
"dune" | ||
"cppo" {build} | ||
"omd" {test} | ||
"craml" {test} | ||
"omd" {with-test & < "2.0.0~"} | ||
"craml" {with-test} | ||
"zarith" | ||
] | ||
synopsis: "Compiler back-end for functional languages, based on OCaml" | ||
description: """ | ||
Malfunction is a high-performance, low-level untyped program | ||
representation, designed as a target for compilers of functional | ||
programming languages.""" |