this repo has no description
1opam-version: "2.0" 2synopsis: "Mad decoding library" 3description: 4 "Bindings for the mad library which provides functions for encoding wave audio files into mp3" 5maintainer: ["The Savonet Team <savonet-users@lists.sourceforge.net>"] 6authors: ["The Savonet Team <savonet-users@lists.sourceforge.net>"] 7license: "GPL-2.0-only" 8homepage: "https://github.com/savonet/ocaml-mad" 9bug-reports: "https://github.com/savonet/ocaml-mad/issues" 10depends: [ 11 "dune" {> "2.0"} 12 "dune-configurator" 13] 14build: [ 15 ["dune" "subst"] {dev} 16 [ 17 "dune" 18 "build" 19 "-p" 20 name 21 "-j" 22 jobs 23 "@install" 24 "@runtest" {with-test} 25 "@doc" {with-doc} 26 ] 27] 28dev-repo: "git+https://github.com/savonet/ocaml-mad.git" 29depexts: [ 30 ["libmad-dev"] {os-distribution = "alpine"} 31 ["libmad"] {os-distribution = "archlinux"} 32 ["libmad-devel"] {os-distribution = "centos"} 33 ["libmad-devel"] {os-distribution = "fedora"} 34 ["libmad-devel"] {os-family = "suse" | os-family = "opensuse"} 35 ["libmad0-dev"] {os-family = "debian"} 36 ["libmad"] {os-distribution = "nixos"} 37 ["mad"] {os = "macos" & os-distribution = "homebrew"} 38] 39url { 40 src: "https://github.com/savonet/ocaml-mad/archive/v0.5.0.tar.gz" 41 checksum: [ 42 "md5=7918a0b2b590fad0b6cfbc20bc3ed801" 43 "sha512=284e2be07f73d5d26378341194c34c28498aceb26d26dd3fd685016e19baba59943c8b4df08eb4be715430a92265a856cd594209ee9d7aed5d10b29b63857dff" 44 ] 45}