Hallo,
mit dem VLC-Paket wird das Firefox-Plugin nicht installiert.
Ich möchte aber das Firefox VLC benutzt um Musik oder Videos abzuspielen.
Dazu habe ich das PKGBUILD von der zur Zeit in Archlinux aktuellen Version 0.8.5-9 genommen und "--enable mozilla" eingetragen:
# $Id: PKGBUILD,v 1.41 2006/11/10 23:11:42 tobias Exp $
# Maintainer:
# Contributor: Sarah Hay <sarahhay@mb.sympatico.ca>
pkgname=vlc
pkgver=0.8.5
pkgrel=9
pkgdesc="VideoLAN Client is a multi-platform MPEG, VCD/DVD, and DivX player."
depends=('libmad>=0.15.1b-2' 'libmpeg2>=0.4.0b-3' 'ffmpeg>=20060507' \
'wxgtk>=2.6.3' 'hal>=0.5.8.1-2' 'libid3tag>=0.15.1b-2' 'bash>=3.1' \
'libdvbpsi4>=0.1.5' 'fribidi>=0.10.7' 'sysfsutils>=2.0.0' \
'libdvdnav>=0.1.10-2' 'libdvdread>=0.9.4-3' 'xvidcore>=1.1.0-2' \
'libmatroska>=0.8.0' 'libxv>=1.0.1' 'libcdio>=0.78' 'desktop-file-utils')
arch=(i686 x86_64)
#Note: These build plugins, so I guess they'd be runtime depends
makedepends=('live-media' 'gnome-vfs' 'mesa' 'sdl_image' 'libmpcdec' 'speex')
install=vlc.install
source=(http://download.videolan.org/pub/videolan/vlc/$pkgver/$pkgname-$pkgver.tar.bz2 \
vlc.desktop)
url="http://www.videolan.org/vlc/"
license=(GPL)
md5sums=('16bb5bf87ed94879a8eb7b0ff9b4f16f' '48038dfc1096c38e99b687ecc30ff621')
build() {
cd $startdir/src/$pkgname-$pkgver
sed -i -e 's:#include <vlc\/vlc.h>:#include <vlc/vlc.h> \n #include <locale.h>: ' src/misc/charset.c
sed -i -e 's:/truetype/freefont/FreeSerifBold.ttf:/TTF/VeraBd.ttf:' modules/misc/freetype.c
# features that won't build on x86_64
[ "$CARCH" = "i686" ] && EXTRAFEATURES="--enable-loader"
./configure --prefix=/usr --enable-dvdread --enable-dvdnav --enable-madi \
--enable-ffmpeg --enable-mozilla --disable-rpath --enable-wxwindows --enable-faad \
--enable-alsa --enable-skins2 --enable-livedotcom --enable-dvb \
--enable-dmo --with-livedotcom-tree=/usr/lib/live-media \
--with-ffmpeg-faac --with-ffmpeg-vorbis --with-ffmpeg-dts \
--with-ffmpeg-ogg $EXTRAFEATURES
make || return 1
make DESTDIR=$startdir/pkg install || return 1
for res in 16 32 48; do
install -D -m644 share/vlc${res}x${res}.png \
$startdir/pkg/usr/share/icons/hicolor/${res}x${res}/apps/vlc.png || return 1
done
install -D -m644 $startdir/src/vlc.desktop \
$startdir/pkg/usr/share/applications/vlc.desktop || return 1
rm -rf ${startdir}/pkg/usr/lib/mozilla
}
Aber trotzdem finde ich nachher keine
libvlcplugin.so oder so.
Was genau muss ich machen?
Gruß,
Upuaut