Restricted installer

From FreekiWiki
Revision as of 19:29, 4 June 2010 by Evilgold (talk | contribs)
Jump to navigation Jump to search

What is it

A script that automates as much as possible the installation of vlc, restricted extras, and libdvdcss.

Usage

wget http://freegeek.errtech.com/ri.sh
chmod +x ri.sh
sudo ./ri.sh

The Script

if zenity --title "Restricted software installation" --text "The software you are about to install might or might not be
restricted by the ridiculous copyright laws of the United States. By clicking yes, you may be violating the DMCA, then
again, you might not be, we really dont know. For more information visit http://patentabsurdity.com/" --question; then
       CN=`lsb_release -cs`
       if [ "${CN}" = "hardy" ] || [ "${CN}" = "intrepid" ]
       then
              apturl apt:vlc?section=multiverse,ubuntu-restricted-extras,libdvdread3
              xterm -e /usr/share/doc/libdvdread3/install-css.sh
       else
              apturl-gtk apt:vlc?section=multiverse,ubuntu-restricted-extras,libdvdread4
              xterm -e /usr/share/doc/libdvdread4/install-css.sh
       fi

fi

To Do

Debian Package Less clicking