Mercurial > mplayer.hg
changeset 20149:dfad285f6828
Remove download script; no longer used in the official Debian package candidate.
author | diego |
---|---|
date | Wed, 11 Oct 2006 10:04:05 +0000 |
parents | 73cd6b74c538 |
children | 2ee2541b06bc |
files | TOOLS/README TOOLS/install-divx5.sh |
diffstat | 2 files changed, 0 insertions(+), 60 deletions(-) [+] |
line wrap: on
line diff
--- a/TOOLS/README Wed Oct 11 08:30:22 2006 +0000 +++ b/TOOLS/README Wed Oct 11 10:04:05 2006 +0000 @@ -523,16 +523,6 @@ 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
--- a/TOOLS/install-divx5.sh Wed Oct 11 08:30:22 2006 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -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 -