diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build index b8113731fe..ac6ffa7465 100755 --- a/tools/linux_packaging/build +++ b/tools/linux_packaging/build @@ -741,6 +741,18 @@ if test -n "$MIXBUS"; then rm -f "${MediaClips}/"*.* unzip -q -d "${MediaClips}" "${CACHEDIR}/MixbusBundledMedia.zip" fi +else + # Ardour Bundled Media Content + curl -s -S --fail -# \ + -z "${CACHEDIR}/ArdourBundledMedia.zip" \ + -o "${CACHEDIR}/ArdourBundledMedia.zip" \ + "https://ardour.org/files/ArdourBundledMedia.zip" + + if test -f "${CACHEDIR}/ArdourBundledMedia.zip"; then + echo "Adding Ardour Bundled Content" + rm -f "${MediaClips}/"*.* + unzip -q -d "${MediaClips}" "${CACHEDIR}/ArdourBundledMedia.zip" + fi fi echo "Setting Bundled Media dir/file permissions"