-
Notifications
You must be signed in to change notification settings - Fork 3
Using Spriter with Debian 9
Alexander Winter edited this page May 19, 2018
·
2 revisions
On their official site, it is mentionned that Spriter is only compatible with Ubuntu 14.0 I managed to make it work with Debian 9 doing the following:
First, you will need libpng12 which is easy enough to get:
sudo apt-get install libpng12-0
Then you have to get libgstapp-0.10.so.0 which is included libgstreamer-plugins-base0.10 but both Debian and Ubuntu stopped supporting it. In order to install it, we need to download the archives:
wget http://fr.archive.ubuntu.com/ubuntu/pool/main/g/gst-plugins-base0.10/libgstreamer-plugins-base0.10-0_0.10.36-1_amd64.deb
wget http://fr.archive.ubuntu.com/ubuntu/pool/universe/g/gstreamer0.10/libgstreamer0.10-0_0.10.36-1.5ubuntu1_amd64.deb
sudo dpkg -i libgstreamer*.deb
If this didn't work for you, or you had to take an extra step let me know and I will complete this page!