Hi,
Zattoo gibt es wieder für Linux und ich habe mir für mich eine PKGBUILD-Datei erstellt um es zu installieren, die ich keinem vorenthalten will.
Nicht schön und meinem System angepasst, Verwendung auf eigene Gefahr. 😉
pkgname=zattoo
pkgver=4.0.2
pkgrel=1
pkgdesc="Real TV on your PC"
arch=('i686' 'x86_64')
url="http://zattoo.com/"
license=('custom')
depends=('lib32-flashplugin')
makedepends=('deb2targz')
source=(http://download.zattoo.com/$pkgname-$pkgver-i386.deb)
md5sums=('8b2b9f03f26d5d0fd874554f4468a3ad')
build() {
deb2targz $pkgname-$pkgver-i386.deb
tar -xzvf $pkgname-$pkgver-i386.tar.gz
install -d $pkgdir/usr/bin/
install -m755 $srcdir/usr/bin/Zattoo $pkgdir/usr/bin/
install -d $pkgdir/usr/lib/zattoo/codecs/
install -d $pkgdir/usr/lib/zattoo/imageformats/
cp -R $startdir/src/usr/lib/zattoo/* $pkgdir/usr/lib/zattoo/
install -d $pkgdir/usr/share/applications/
install -d $pkgdir/usr/share/zattoo_player/resources/images/
cp -R $startdir/src/usr/share/applications/* $pkgdir/usr/share/applications/
cp -R $startdir/src/usr/share/zattoo_player/resources/images/* $pkgdir/usr/share/zattoo_player/resources/images/
}