diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2020-02-06 02:55:27 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-02-06 02:55:27 +0100 |
commit | 74d2dabcbe6aaccffc6999034384b115f3556b71 (patch) | |
tree | 2336ea96c35e5cf593e26f45fde8080e4d1ada80 /ubuntu/_base/applications/kaffeine/debian/install-css.sh | |
parent | 892ada12716f25c37ad5afcccaee73ec0161808a (diff) | |
download | tde-packaging-74d2dabcbe6aaccffc6999034384b115f3556b71.tar.gz tde-packaging-74d2dabcbe6aaccffc6999034384b115f3556b71.zip |
DEB kaffeine: Switch to cmake.
Removed broken codec installation scripts.
Enable mp3lame support.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu/_base/applications/kaffeine/debian/install-css.sh')
-rw-r--r-- | ubuntu/_base/applications/kaffeine/debian/install-css.sh | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/ubuntu/_base/applications/kaffeine/debian/install-css.sh b/ubuntu/_base/applications/kaffeine/debian/install-css.sh deleted file mode 100644 index f374562ff..000000000 --- a/ubuntu/_base/applications/kaffeine/debian/install-css.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/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 |