Hi @nightwatcher74 — great news, glad you got it working with this fix!

Unfortunately, my understanding of devops is really limited (I'm design/front 
end) so hope you don't mind me asking but I'd like to test this.

At the moment I'm using a puppet script to build the environment and install 
liquidsoap using opam, as is now recommended, like this

```
#!/bin/bash

source /home/deployer/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true

cd /home/deployer
opam install cry alsa pulseaudio mad taglib lame ogg vorbis opus voaacenc 
fdkaac faad flac ladspa soundtouch samplerate xmlplaylist dtools duppy mm 
liquidsoap
```

but before that I have used an alternative way, from the github repo, which 
looked like this

```
#!/bin/bash

source /home/deployer/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true

cd /tmp
git clone https://github.com/savonet/liquidsoap-full.git liquidsoap
cd liquidsoap
cp ../PACKAGES .
make init
./bootstrap
./configure --enable-debugging --disable-graphics
make
sudo make install
```

Do you have a suggestion of how I could do a similar test as you've done with 
my setup?

Many thanks

Chris

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/savonet/liquidsoap/issues/708#issuecomment-479081642
_______________________________________________
Savonet-users mailing list
Savonet-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to