diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-03-28 14:13:18 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-03-28 14:13:18 -0500 |
commit | 4bc22e8b188aa26df8b1a23c39bb0f3c5b05b8b6 (patch) | |
tree | c6f53decaabed9678523a8bbd6a1000a9f3bf78f /ubuntu/raring/applications/kaffeine/debian/install-css.sh | |
parent | 211d261d7778de1d9a773e7ec43a4e97b4bd7e57 (diff) | |
download | tde-packaging-4bc22e8b188aa26df8b1a23c39bb0f3c5b05b8b6.tar.gz tde-packaging-4bc22e8b188aa26df8b1a23c39bb0f3c5b05b8b6.zip |
Split raring packaging into new directory due to defoma changes
Diffstat (limited to 'ubuntu/raring/applications/kaffeine/debian/install-css.sh')
-rw-r--r-- | ubuntu/raring/applications/kaffeine/debian/install-css.sh | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/ubuntu/raring/applications/kaffeine/debian/install-css.sh b/ubuntu/raring/applications/kaffeine/debian/install-css.sh new file mode 100644 index 000000000..f374562ff --- /dev/null +++ b/ubuntu/raring/applications/kaffeine/debian/install-css.sh @@ -0,0 +1,46 @@ +#!/bin/sh + +set -e + +site=http://www.dtek.chalmers.se/groups/dvd/deb/ +arch=`dpkg --print-installation-architecture` + +soname=2 +uversion=1.2.5 +available="alpha amd64 hppa i386 ia64 powerpc s390 sparc" +version=${uversion}-1 + +if [ ! -e /usr/bin/wget ] +then + echo "Install wget and run this script again" + exit 1 +fi + +for a in $available; do + if [ "$a" = "$arch" ]; then + wget ${site}libdvdcss${soname}_${version}_${arch}.deb -O /tmp/libdvdcss.deb + dpkg -i /tmp/libdvdcss.deb + exit $? + fi +done + +echo "No binary deb available. Will try to build and install it." +echo "You need to have debhelper, dpkg-dev and fakeroot installed." +echo "If not, interrupt now, install them and rerun this script." +echo "" +echo "This is higly experimental, look out for what happens below." +echo "If you want to stop, interrupt now (control-c), else press" +echo "return to proceed" +read dum + +mkdir -p /tmp/dvd +cd /tmp/dvd +wget ${site}libdvdcss_${uversion}.orig.tar.gz +wget ${site}libdvdcss_${version}.diff.gz +wget ${site}libdvdcss_${version}.dsc +dpkg-source -x libdvdcss_${version}.dsc +cd libdvdcss-${uversion} +fakeroot ./debian/rules binary +echo "Any problems? Interrupt now (control-c) and try to fix" +echo "manually, else go on and install (return)." +dpkg -i ../libdvdcss${soname}_${version}_${arch}.deb |