-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
opam-version: "2.0" | ||
synopsis: "Universally unique identifiers (UUIDs) for OCaml" | ||
description: """\ | ||
Uuidm is an OCaml module implementing 128 bits universally unique | ||
identifiers version 3, 5 (named based with MD5, SHA-1 hashing) and 4 | ||
(random based) according to [RFC 4122][rfc4122]. | ||
|
||
Uuidm has no dependency and is distributed under the ISC license. | ||
|
||
[rfc4122]: http://tools.ietf.org/html/rfc4122 | ||
|
||
Homepage: <http://erratique.ch/software/uuidm>""" | ||
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>" | ||
authors: "The uuidm programmers" | ||
license: "ISC" | ||
tags: ["uuid" "codec" "org:erratique"] | ||
homepage: "https://erratique.ch/software/uuidm" | ||
doc: "https://erratique.ch/software/uuidm/doc/" | ||
bug-reports: "https://github.com/dbuenzli/uuidm/issues" | ||
depends: [ | ||
"ocaml-osx" {>= "4.08.0"} | ||
"ocamlfind" {build} | ||
"ocamlbuild" {build} | ||
"topkg" {build & >= "1.0.3"} | ||
"opam-installer" {build} | ||
] | ||
depopts: ["cmdliner-osx"] | ||
conflicts: [ | ||
"cmdliner-osx" {< "1.1.0"} | ||
] | ||
build: [ | ||
"ocaml" | ||
"pkg/pkg.ml" | ||
"build" | ||
"--dev-pkg" | ||
"%{dev}%" | ||
"--with-cmdliner" | ||
"%{cmdliner-osx:installed}%" | ||
] | ||
install: [["opam-installer" "--prefix=%{prefix}%/osx-sysroot" "uuidm.install"]] | ||
remove: [["ocamlfind" "-toolchain" "osx" "remove" "uuidm"]] | ||
dev-repo: "git+https://erratique.ch/repos/uuidm.git" | ||
url { | ||
src: "https://erratique.ch/software/uuidm/releases/uuidm-0.9.8.tbz" | ||
checksum: | ||
"sha512=d5073ae49c402ab3ea6dc8f86bc5b8cc14129437e23e47da4d91431648fcb31c4dce6308f9c936c58df9a2c6afda61d77105a3022e369cca4e4c140320e803b5" | ||
} |