From cd9a7c5ac8336feceecc70a1f7cac6aefe5c370b Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 14 Aug 2011 05:57:37 -0500 Subject: Use autotools to build Amarok on Ubuntu and Debian --- .../applications/amarok.cmake/debian/install-mp3 | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 debian/lenny/applications/amarok.cmake/debian/install-mp3 (limited to 'debian/lenny/applications/amarok.cmake/debian/install-mp3') diff --git a/debian/lenny/applications/amarok.cmake/debian/install-mp3 b/debian/lenny/applications/amarok.cmake/debian/install-mp3 new file mode 100644 index 000000000..7b06cbd2f --- /dev/null +++ b/debian/lenny/applications/amarok.cmake/debian/install-mp3 @@ -0,0 +1,40 @@ +check_mp3() { + + INSTALLED=`dpkg --get-selections libxine1-ffmpeg | grep install` + + if [ -z "$INSTALLED" ]; then + if [ -x /opt/trinity/bin/kdialog ]; then + kdialog --msgbox "There was an error installing MP3 support. You need to install the package \"libxine1-ffmpeg\" manually." --icon amarok + elif [ -x /usr/bin/zenity ]; then + zenity --info --text "There was an error installing MP3 support. You need to install the package \"libxine1-ffmpeg\" manually." + else + Xdialog --msgbox "There was an error installing MP3 support.\nYou need to install the package \"libxine1-ffmpeg\" manually." 10 60 + fi + exit 1 + else + if [ -x /opt/trinity/bin/kdialog ]; then + kdialog --msgbox "MP3 support now installed, you will need to restart Amarok." --icon amarok + elif [ -x /usr/bin/zenity ]; then + zenity --info --text "MP3 support now installed, you will need to restart Amarok." + else + Xdialog --msgbox "MP3 support now installed, you will need to restart Amarok." 5 60 + fi + exit 0 + fi +} + +INSTALLED=`dpkg --get-selections libxine1-ffmpeg | grep install` + +#is available, not installed +if [ -z "$INSTALLED" ]; then + if [ -x /opt/trinity/bin/kdesu ] && [ -x /usr/bin/install-package ]; then + /opt/trinity/bin/kdesu -d "install-package --icon amarok --install libxine1-ffmpeg" + elif [ -x /usr/bin/gksudo ] && [ -x /usr/sbin/synaptic ]; then + gksudo "sh -c 'echo \"libxine1-ffmpeg i\"|synaptic --non-interactive --set-selections'" + else + xterm -e 'sudo apt-get install libxine1-ffmpeg' + fi + check_mp3 +fi + +exit 0 -- cgit v1.2.3