I wrote a little bit of bash code that will download the latest version of libdvdcss ad install it on my linux system. I thought I'd share it in case anyone wants to use it :)
#!/bin/bash
tmpfil=\$(mktemp);
wget http://download.videolan.org/pub/libdvdcss/last/ -k -q -O "\$tmpfil";
grep -o "http://[^'\"<>]*.bz2" "\$tmpfil";
url=`grep -o "http://[^'\"<>]*.bz2" "\$tmpfil" | head -n 1`
sudo rm -R libdvd*;
wget \$url;
rm "\$tmpfil";
sudo apt-get update;
sudo apt-get install -y bzip2 gcc make;
tar -xvjpf *.tar.bz2;
cd libdvdcss*;
./configure;
make;
sudo make install;
sudo cp /usr/local/lib/libdvdcss* /lib;
exit;
libdvdcss
Posted
Author Stephen Easley-Walsh