summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/applications/amarok/debian/install-mp3
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2019-04-03 22:56:40 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-04-03 22:56:40 +0900
commit11394aecd1f906fee2ebd2b90412aeba4651fbff (patch)
treebcf750380e6d9fc7dbe524e16bbe2afde25dcfa0 /ubuntu/maverick/applications/amarok/debian/install-mp3
parentd24bd898174453b586ac90f2ef7a60165fa26fde (diff)
downloadtde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.tar.gz
tde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.zip
DEB: use _base folder for a distro instead of specific distros (squeeze
and maverick). Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ubuntu/maverick/applications/amarok/debian/install-mp3')
-rw-r--r--ubuntu/maverick/applications/amarok/debian/install-mp340
1 files changed, 0 insertions, 40 deletions
diff --git a/ubuntu/maverick/applications/amarok/debian/install-mp3 b/ubuntu/maverick/applications/amarok/debian/install-mp3
deleted file mode 100644
index ae0663182..000000000
--- a/ubuntu/maverick/applications/amarok/debian/install-mp3
+++ /dev/null
@@ -1,40 +0,0 @@
-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/tdesu ] && [ -x /usr/bin/install-package ]; then
- /opt/trinity/bin/tdesu -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