summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-11 10:04:05 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-11 10:04:05 +0000
commitb75c335056838e2ea8f52eb9611e6a7bb1006081 (patch)
treec327802565d8f2935c1ab28f1d67f2443aec7dfa /TOOLS
parented967a434bbb2f9656eb6df034e65080226bfdb2 (diff)
downloadmpv-b75c335056838e2ea8f52eb9611e6a7bb1006081.tar.bz2
mpv-b75c335056838e2ea8f52eb9611e6a7bb1006081.tar.xz
Remove download script; no longer used in the official Debian package candidate.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20155 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rw-r--r--TOOLS/README10
-rwxr-xr-xTOOLS/install-divx5.sh50
2 files changed, 0 insertions, 60 deletions
diff --git a/TOOLS/README b/TOOLS/README
index 9d03888abe..091f787772 100644
--- a/TOOLS/README
+++ b/TOOLS/README
@@ -523,16 +523,6 @@ Note: You will need the libwww-perl stuff and the cabextract utility
which can be found at http://www.kyz.uklinux.net/cabextract.php3.
-install-divx5.sh
-
-Author: Andrea Menucci, thuglife
-
-Description: Downloads and installs DivX 5 codecs from divx.com.
-
-Usage: install-divx5.sh install
- install-divx5.sh uninstall
-
-
install-w32codecs.sh
Author: Andrea Menucci, thuglife
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
-