this repo has no description
1opam-version: "2.0"
2maintainer: "Seb Mondet <seb@mondet.org>"
3authors: "Seb Mondet <seb@mondet.org>"
4homepage: "https://gitlab.com/smondet/misuja"
5bug-reports: "https://gitlab.com/smondet/misuja/issues"
6license: "MIT"
7dev-repo: "git+https://gitlab.com/smondet/misuja.git"
8build: [make "lib"]
9install: [make "install"]
10remove: [make "uninstall"]
11depends: [
12 "ocaml" {>= "4.03.0"}
13 "ocamlfind" {build}
14 "base-unix"
15]
16depexts: [
17 ["libjack-jackd2-dev"] {os-family = "debian"}
18 ["jack-dev"] {os-distribution = "alpine"}
19 ["jack-audio-connection-kit-devel"] {os-distribution = "fedora"}
20 ["epel-release" "jack-audio-connection-kit-devel"]
21 {os-distribution = "centos"}
22 ["jack-audio-connection-kit-devel"] {os-distribution = "rhel"}
23 ["libjack-devel"] {os-family = "suse" | os-family = "opensuse"}
24 ["jack"] {os-distribution = "homebrew" & os = "macos"}
25]
26synopsis:
27 "A library to drive the MIDI system of the Jack Audio Connection Kit."
28description: """
29Misuja is a low-latency “MIDI communications thread” implemented in C
30which is manipulated with an OCaml API (communicating through
31ring-buffers provided by the Jack API)."""
32url {
33 src:
34 "https://gitlab.com/smondet/misuja/-/archive/misuja.0.0.0/misuja-misuja.0.0.0.tar.gz"
35 checksum: [
36 "sha256=9b734d81f25707185c29be82dea62e000cf49515bcdc126dbd2b92e7c7cbd3b1"
37 "md5=9118c0141b46a46ec73e0afef3cc6cb5"
38 ]
39}