this repo has no description
1opam-version: "2.0" 2synopsis: "Swiss-army knife for multimedia streaming" 3description: """\ 4Liquidsoap is a powerful and flexible language for describing your 5streams. It offers a rich collection of operators that you can combine 6at will, giving you more power than you need for creating or 7transforming streams. But liquidsoap is still very light and easy to 8use, in the Unix tradition of simple strong components working 9together.""" 10maintainer: "romain.beauxis@gmail.com" 11authors: "The Savonet Team <savonet-users@lists.sourceforge.net>" 12license: "GPL-2.0-or-later" 13homepage: "https://github.com/savonet/liquidsoap" 14bug-reports: "https://github.com/savonet/liquidsoap/issues" 15depends: [ 16 "conf-autoconf" {dev} 17 "conf-automake" {dev} 18 "ocaml" {>= "4.08.0" & < "5.3"} 19 "camomile" {>= "1.0.0" & < "2.0.0"} 20 "dtools" {>= "0.4.4"} 21 "duppy" {>= "0.9.1" & < "0.9.3"} 22 "menhir" {>= "20180703" & <= "20211128"} 23 "mm" {>= "0.7.0" & < "0.8.0"} 24 "ocamlfind" {build} 25 "conf-pkg-config" {build} 26 "conf-which" {build} 27 "pcre" 28 "sedlex" {>= "2.2"} 29] 30depopts: [ 31 "alsa" 32 "ao" 33 "bjack" 34 "camlimages" 35 "cry" 36 "dssi" 37 "faad" 38 "fdkaac" 39 "ffmpeg" 40 "flac" 41 "frei0r" 42 "gd" 43 "graphics" 44 "gstreamer" 45 "inotify" 46 "ladspa" 47 "lame" 48 "lastfm" 49 "lilv" 50 "lo" 51 "mad" 52 "magic" 53 "ocurl" 54 "ogg" 55 "opus" 56 "osx-secure-transport" 57 "portaudio" 58 "posix-time2" 59 "pulseaudio" 60 "prometheus-liquidsoap" 61 "samplerate" 62 "shine" 63 "soundtouch" 64 "speex" 65 "srt" 66 "ssl" 67 "taglib" 68 "theora" 69 "sdl-liquidsoap" 70 "tsdl" 71 "tsdl-image" 72 "tsdl-ttf" 73 "vorbis" 74 "xmlplaylist" 75 "yojson" 76] 77conflicts: [ 78 "alsa" {< "0.3.0"} 79 "ao" {< "0.2.0"} 80 "bjack" {< "0.1.3"} 81 "cry" {< "0.6.5"} 82 "cry" {>= "1.0.0"} 83 "dssi" {< "0.1.3"} 84 "faad" {< "0.5.0"} 85 "fdkaac" {< "0.3.1"} 86 "ffmpeg" {< "1.1.1"} 87 "ffmpeg" {>= "1.1.8"} 88 "ffmpeg-avutil" {< "1.1.1"} 89 "ffmpeg-avutil" {>= "1.1.8"} 90 "ffmpeg-av" {< "1.1.1"} 91 "ffmpeg-av" {>= "1.1.8"} 92 "ffmpeg-avcodec" {< "1.1.1"} 93 "ffmpeg-avcodec" {>= "1.1.8"} 94 "ffmpeg-avdevice" {< "1.1.1"} 95 "ffmpeg-avdevice" {>= "1.1.8"} 96 "ffmpeg-avfilter" {< "1.1.1"} 97 "ffmpeg-avfilter" {>= "1.1.8"} 98 "ffmpeg-swresample" {< "1.1.1"} 99 "ffmpeg-swresample" {>= "1.1.8"} 100 "ffmpeg-swscale" {< "1.1.1"} 101 "ffmpeg-swscale" {>= "1.1.8"} 102 "flac" {< "0.3.0" | >= "0.4.0"} 103 "frei0r" {< "0.1.0"} 104 "gstreamer" {< "0.3.1"} 105 "inotify" {< "1.0"} 106 "ladspa" {< "0.2.0"} 107 "lame" {< "0.3.5"} 108 "lastfm" {< "0.3.0"} 109 "lo" {< "0.2.0"} 110 "mad" {< "0.5.0"} 111 "magic" {< "0.6"} 112 "ogg" {< "0.7.0"} 113 "opus" {< "0.2.0"} 114 "portaudio" {< "0.2.0"} 115 "pulseaudio" {< "0.1.4"} 116 "samplerate" {< "0.1.5"} 117 "sdl-liquidsoap" {< "2"} 118 "shine" {< "0.2.0"} 119 "soundtouch" {< "0.1.9"} 120 "speex" {< "0.4.0"} 121 "srt" {< "0.1.2" | >= "0.3.0"} 122 "ssl" {< "0.5.2"} 123 "taglib" {< "0.3.7"} 124 "tsdl-image" {< "0.2.0"} 125 "theora" {< "0.4.0"} 126 "vorbis" {< "0.8.0"} 127 "xmlplaylist" {< "0.1.3"} 128 "camlimages" {>= "5.0.5"} 129] 130build: [ 131 ["./bootstrap"] {dev} 132 [ 133 "./configure" 134 "--prefix" 135 prefix 136 "--sbindir=%{lib}%/liquidsoap/sbin" 137 "--libexecdir=%{lib}%/liquidsoap/libexec" 138 "--sysconfdir=%{lib}%/liquidsoap/etc" 139 "--sharedstatedir=%{lib}%/liquidsoap/com" 140 "--localstatedir=%{lib}%/liquidsoap/var" 141 "--libdir=%{lib}%/liquidsoap/lib" 142 "--includedir=%{lib}%/liquidsoap/include" 143 "--datarootdir=%{lib}%/liquidsoap/share" 144 "--with-bash-completion-dir=%{lib}%/liquidsoap/etc/bash_completion.d" 145 "--with-user=dummy" 146 "--with-group=dummy" 147 ] 148 [make "clean"] {dev} 149 [make] 150] 151install: [make "install"] 152post-messages: [ 153 """\ 154We're sorry that your liquidsoap install failed. Check out our installation 155instructions at: https://www.liquidsoap.info/doc-%{version}%/install.html#opam 156for more information.""" 157 {failure} 158 "✨ Congratulations on installing liquidsoap! ✨" {success} 159 """\ 160We noticed that you did not install any mp3 decoder. This is a feature most 161users want. You might need to install the mad or ffmpeg package.""" 162 {success & !mad-enabled & !ffmpeg-enabled} 163 """\ 164We noticed that you did not install any mp3 encoder. This is a feature most 165users want. You might need to install the lame or shine package.""" 166 {success & !lame-enabled & !shine-enabled & !ffmpeg-enabled} 167 """\ 168We noticed that you did not install the taglib package that provides support 169for reading metatadata in audio files. This is a feature most users want.""" 170 {success & !taglib-enabled} 171 """\ 172We noticed that you did not install the samplerate package. We strongly 173recommend this package for audio samplerate conversion.""" 174 {success & !samperate-enabled} 175 """\ 176We noticed that you did not install the cry package that provides icecast 177output. This is a feature most users want.""" 178 {success & !cry-enabled} 179 """\ 180We noticed that you did not install any ssl support package. Liquidsoap won't 181be able to use any HTTPS feature. You might want to install one of ssl or 182osx-secure-transport package.""" 183 {success & !ssl-enabled & !secure-transport-enabled} 184] 185depexts: ["coreutils"] {os = "macos" & os-distribution = "homebrew"} 186dev-repo: "git+https://github.com/savonet/liquidsoap.git" 187url { 188 src: 189 "https://github.com/savonet/liquidsoap-opam-archives/raw/main/liquidsoap-2.0.2.tar.bz2" 190 checksum: [ 191 "md5=3ab39586ed5c35f415db4f347bfab2f6" 192 "sha512=260e3a0d3d32ef878129f47df322a3e2b72834b1e8ee2fcc1f140b22c0e3ac22b9f03891290b01755a809fbc56c3b5329734aa5ea2bb76a5b6fcdfcbafe35dc3" 193 ] 194} 195x-maintenance-intent: ["(latest)"]