Ultrastar Deluxe on Ubuntu

I'm trying to install Ultrastar Deluxe. I have installed recommended packages but there are some errors. The icon appears on my computer but i can't open it.

1.ultrastar-deluxe_1.1.0-svn-20120608-1_i386.deb
2.ultrastar-deluxe-data_1.1.0-svn-20120608-1_all.deb
3.ultrastar-deluxe_1.1.0-svn-20120608-1_amd64.deb
Errors:
dpkg: error processing package libavformat52 (--install): dependency problems - leaving unconfigured
Errors were encountered while processing: libavformat52
1

1 Answer

On Ubuntu 16.04 LTS you can use newer package version from the same PPA:

mkdir -p ~/Downloads/ultrastar-deluxe
cd ~/Downloads/ultrastar-deluxe
wget
wget
wget
wget
sudo apt-get install ./*.deb

On newer versions of Ubuntu can follow official README or packaging recipe from ArchLinux AUR:

sudo apt-get update && sudo apt-get install git automake make gcc fpc libsdl2-image-dev libavformat-dev libswscale-dev libsqlite3-dev libfreetype6-dev portaudio19-dev libportmidi-dev liblua5.3-dev libopencv-videoio-dev
git clone
cd USDX
./autogen.sh
./configure
make
sudo make install

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like