forked from savonet/liquidsoap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
liquidsoap.opam
161 lines (154 loc) · 4.47 KB
/
liquidsoap.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
opam-version: "2.0"
name: "liquidsoap"
version: "2.0.0"
maintainer: "[email protected]"
homepage: "https://github.com/savonet/liquidsoap"
authors: "The Savonet Team <[email protected]>"
build: [
["./bootstrap"] {dev}
["./configure" "--prefix" prefix
"--sbindir=%{lib}%/liquidsoap/sbin"
"--libexecdir=%{lib}%/liquidsoap/libexec"
"--sysconfdir=%{lib}%/liquidsoap/etc"
"--sharedstatedir=%{lib}%/liquidsoap/com"
"--localstatedir=%{lib}%/liquidsoap/var"
"--libdir=%{lib}%/liquidsoap/lib"
"--includedir=%{lib}%/liquidsoap/include"
"--datarootdir=%{lib}%/liquidsoap/share"
"--with-bash-completion-dir=%{lib}%/liquidsoap/etc/bash_completion.d"
"--with-user=dummy"
"--with-group=dummy"]
[make "clean"] {dev}
[make]
]
install: [
[make "install"]
]
post-messages: [
"We're sorry that your liquidsoap install failed. Check out our installation
instructions at: https://www.liquidsoap.info/doc-%{version}%/install.html#opam
for more information." {failure}
"✨ Congratulations on installing liquidsoap! ✨" {success}
"We noticed that you did not install any mp3 decoder. This is a feature most
users want. You might need to install the mad or ffmpeg package." {success & !mad-enabled & !ffmpeg-decoder-enabled}
"We noticed that you did not install any mp3 encoder. This is a feature most
users want. You might need to install the lame or shine package." {success & !lame-enabled & !shine-enabled & !ffmpeg-encoder-enabled}
"We noticed that you did not install the taglib package that provides support
for reading metatadata in audio files. This is a feature most users want." {success & !taglib-enabled}
"We noticed that you did not install the samplerate package. We stronly
recommend this package for audio samplerate conversion." {success & !samperate-enabled}
"We noticed that you did not install the cry package that provides icecast
output. This is a feature most users want." {success & !cry-enabled}
"We noticed that you did not install any ssl support package. Liquidsoap won't
be able to use any HTTPS feature. You might want to install one of ssl or
osx-secure-transport package." {success & !ssl-enabled & !secure-transport-enabled}
]
depends: [
"ocaml" {>= "4.08.0"}
"camomile" {>= "1.0.0"}
"dtools" {>= "0.4.2"}
"duppy" {>= "0.8.1"}
"menhir"
"mm" {>= "0.6.0"}
"ocamlfind" {build}
"pcre"
"sedlex" {>= "2.0"}
]
depopts: [
"alsa"
"ao"
"bjack"
"camlimages"
"cry"
"dssi"
"faad"
"fdkaac"
"ffmpeg-avutil"
"ffmpeg-av"
"ffmpeg-avcodec"
"ffmpeg-avfilter"
"ffmpeg-swresample"
"ffmpeg-swscale"
"flac"
"frei0r"
"gavl"
"gd"
"graphics"
"gstreamer"
"inotify"
"ladspa"
"lame"
"lastfm"
"lo"
"mad"
"magic"
"ogg"
"opus"
"osx-secure-transport"
"portaudio"
"pulseaudio"
"samplerate"
"shine"
"soundtouch"
"speex"
"srt"
"ssl"
"taglib"
"theora"
"tsdl"
"tsdl-image"
"tsdl-ttf"
"vorbis"
"xmlplaylist"
"yojson"
]
conflicts: [
"alsa" {< "0.3.0"}
"ao" {< "0.2.0"}
"bjack" {< "0.1.3"}
"cry" {< "0.6.5"}
"dssi" {< "0.1.3"}
"faad" {< "0.5.0"}
"fdkaac" {< "0.3.1"}
"ffmpeg-avutil" {< "0.5.0"}
"ffmpeg-av" {< "0.5.0"}
"ffmpeg-avcodec" {< "0.5.0"}
"ffmpeg-avfilter" {< "0.5.0"}
"ffmpeg-swresample" {< "0.5.0"}
"ffmpeg-swscale" {< "0.5.0"}
"flac" {< "0.2.0"}
"frei0r" {< "0.1.0"}
"gavl" {< "0.1.4"}
"gstreamer" {< "0.3.0"}
"inotify" {< "1.0"}
"ladspa" {< "0.2.0"}
"lame" {< "0.3.4"}
"lastfm" {< "0.3.0"}
"lo" {< "0.1.2"}
"mad" {< "0.5.0"}
"magic" {< "0.6"}
"ogg" {< "0.6.0"}
"opus" {< "0.1.3"}
"portaudio" {< "0.2.0"}
"pulseaudio" {< "0.1.4"}
"samplerate" {< "0.1.5"}
"shine" {< "0.2.0"}
"soundtouch" {< "0.1.9"}
"speex" {< "0.3.0"}
"srt" {< "0.1.1"}
"ssl" {< "0.5.2"}
"taglib" {< "0.3.0"}
"theora" {< "0.3.1"}
"vorbis" {< "0.7.0"}
"xmlplaylist" {< "0.1.3"}
]
bug-reports: "https://github.com/savonet/liquidsoap/issues"
dev-repo: "git+https://github.com/savonet/liquidsoap.git"
synopsis: "Swiss-army knife for multimedia streaming"
description: """
Liquidsoap is a powerful and flexible language for describing your
streams. It offers a rich collection of operators that you can combine
at will, giving you more power than you need for creating or
transforming streams. But liquidsoap is still very light and easy to
use, in the Unix tradition of simple strong components working
together."""