this repo has no description
1opam-version: "2.0" 2maintainer: "Romain Beauxis <toots@rastageeks.org>" 3authors: "The Savonet Team <savonet-users@lists.sourceforge.net>" 4homepage: "https://github.com/savonet/ocaml-lo" 5build: [ 6 ["./configure" "--prefix" prefix] {os != "macos"} 7 [ 8 "./configure" 9 "CFLAGS=-I/usr/local/include" 10 "LDFLAGS=-L/usr/local/lib" 11 "OCAMLFLAGS=-ccopt -I/usr/local/include -cclib -L/usr/local/lib" 12 "--prefix" 13 prefix 14 ] {os = "macos"} 15 [make] 16] 17install: [ 18 [make "install"] 19] 20remove: ["ocamlfind" "remove" "lo"] 21depends: ["ocaml" "ocamlfind"] 22depexts: [ 23 ["liblo-dev"] {os-family = "debian"} 24 ["liblo"] {os = "macos" & os-distribution = "homebrew"} 25] 26bug-reports: "https://github.com/savonet/ocaml-lo/issues" 27dev-repo: "git+https://github.com/savonet/ocaml-lo.git" 28synopsis: 29 "Bindings for the lo library which provides functions for communicating with input controls using the OSC protocol" 30flags: light-uninstall 31url { 32 src: 33 "https://github.com/savonet/ocaml-lo/releases/download/0.1.1/ocaml-lo-0.1.1.tar.gz" 34 checksum: [ 35 "sha256=7f8b8e1c5c9d758be120dc18e3c7846cd19b58e854031af136fa717eadf5286e" 36 "md5=8534c358aa497e96e6af033a20ba0fc4" 37 ] 38}