diff --git a/util/docker/stations/setup/icecast.sh b/util/docker/stations/setup/icecast.sh index 5b8ea6903..8ddf275d7 100644 --- a/util/docker/stations/setup/icecast.sh +++ b/util/docker/stations/setup/icecast.sh @@ -9,8 +9,12 @@ apt-get install -q -y --no-install-recommends \ mkdir -p /bd_build/stations/icecast_build cd /bd_build/stations/icecast_build -git clone https://github.com/karlheyes/icecast-kh.git . -git checkout 3b04a78133b7c4b8f879b55e83c139532976de87 +curl -fsSL https://github.com/karlheyes/icecast-kh/archive/refs/tags/icecast-2.4.0-kh17.tar.gz \ + -o icecast.tar.gz +tar -xvzf icecast.tar.gz --strip-components=1 + +# git clone https://github.com/karlheyes/icecast-kh.git . +# git checkout 3b04a78133b7c4b8f879b55e83c139532976de87 ./configure make @@ -23,6 +27,10 @@ apt-get remove --purge -y build-essential libssl-dev libcurl4-openssl-dev mkdir -p /bd_build/stations/icecast_customizations cd /bd_build/stations/icecast_customizations -git clone https://github.com/AzuraCast/icecast-kh-custom-files.git . +# git clone https://github.com/AzuraCast/icecast-kh-custom-files.git . + +curl -fsSL https://github.com/AzuraCast/icecast-kh-custom-files/archive/refs/tags/2023-01-21.tar.gz \ + -o custom-files.tar.gz +tar -xvzf custom-files.tar.gz --strip-components=1 cp -r web/* /usr/local/share/icecast/web