summaryrefslogtreecommitdiffstats
path: root/TOOLS/install-divx5.sh
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/install-divx5.sh')
-rwxr-xr-xTOOLS/install-divx5.sh50
1 files changed, 0 insertions, 50 deletions
diff --git a/TOOLS/install-divx5.sh b/TOOLS/install-divx5.sh
deleted file mode 100755
index d3017058b6..0000000000
--- a/TOOLS/install-divx5.sh
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/bin/sh
-
-# Author: thuglife, mennucc1
-#
-
-set -e
-
-site=http://download.divx.com/divx/
-packagename=divx4linux501-20020418
-filename=$packagename.tgz
-
-if [ `whoami` != root ]; then
- echo "You must be a root to start this script. Login As root first!"
- exit 1
-else
-
-
-case "$1" in
- install)
- mkdir /var/tmp/mplayer$$
- cd /var/tmp/mplayer$$
- wget $site/$filename
- tar xzf $filename
- cd $packagename/
- sh install.sh
- cd ..
- rm -rf $filename
- rm -rf $packagename/
- echo "Installed Succesfully!"
- rmdir /var/tmp/mplayer$$
- ;;
-
- uninstall)
- rm -rf /usr/local/lib/libdivx{encore,decore}.so{,.0}
- echo "Uninstalled Succesfully!"
-
- ;;
- *)
- echo "Usage: {install|uninstall}"
- exit 1
-
- ;;
-esac
-
-
-
-exit 0
-
-fi
-