diff options
Diffstat (limited to 'extra/vlc/PKGBUILD')
-rw-r--r-- | extra/vlc/PKGBUILD | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/extra/vlc/PKGBUILD b/extra/vlc/PKGBUILD index fdb80c80e..d06fb07c6 100644 --- a/extra/vlc/PKGBUILD +++ b/extra/vlc/PKGBUILD @@ -7,7 +7,7 @@ pkgname=vlc pkgver=2.0.3 pkgrel=4 pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.videolan.org/vlc/" license=('LGPL2.1' 'GPL2') depends=('a52dec' 'libdvbpsi' 'libxpm' 'libdca' 'qt' 'libproxy' @@ -16,27 +16,27 @@ depends=('a52dec' 'libdvbpsi' 'libxpm' 'libdca' 'qt' 'libproxy' 'libshout' 'libmad' 'libmpeg2' 'libmodplug' 'libass' 'xcb-util-keysyms') makedepends=('live-media' 'libnotify' 'libbluray' 'flac' 'kdelibs' - 'fluidsynth' 'libdc1394' 'libavc1394' 'lirc-utils' - 'libcaca' 'librsvg' 'portaudio' 'oss' 'libgme' 'xosd' - 'projectm' 'twolame' 'aalib' 'libmtp' 'libdvdcss' + 'fluidsynth' 'libdc1394' 'libavc1394' + 'libcaca' 'librsvg' 'portaudio' 'libgme' 'xosd' + 'twolame' 'aalib' 'libmtp' 'libdvdcss' 'gnome-vfs' 'libgoom2' 'libtar' 'vcdimager') +[ "$CARCH" = "mips64el" ] || makedepends+=('lirc-utils' 'oss' 'projectm') optdepends=('avahi: for service discovery using bonjour protocol' 'libnotify: for notification plugin' 'ncurses: for ncurses interface support' - 'libdvdcss: for decoding encrypted DVDs' - 'lirc-utils: for lirc plugin' - 'libavc1394: for devices using the 1394ta AV/C' + 'libdvdcss: for decoding encrypted DVDs') +[ "$CARCH" = "mips64el" ] || optdepends+=('lirc-utils: for lirc plugin') +optdepends+=('libavc1394: for devices using the 1394ta AV/C' 'libdc1394: for IEEE 1394 plugin' - 'kdelibs: KDE Solid hardware integration' - 'vdpau-video: vdpau back-end for nvidia' - 'libva-driver-intel: back-end for intel cards' - 'libbluray: for Blu-Ray support' - 'flac: for Free Lossless Audio Codec plugin' - 'oss: for OSS audio support' - 'portaudio: for portaudio support' - 'twolame: for TwoLAME mpeg2 encoder plugin' - 'projectm: for ProjectM visualisation plugin' - 'libcaca: for colored ASCII art video output' + 'kdelibs: KDE Solid hardware integration') +[ "$CARCH" = "mips64el" ] || optdepends+=('libva-driver-intel: back-end for intel cards') +optdepends+=('libbluray: for Blu-Ray support' + 'flac: for Free Lossless Audio Codec plugin') +[ "$CARCH" = "mips64el" ] || optdepends+=('oss: for OSS audio support') +optdepends+=('portaudio: for portaudio support' + 'twolame: for TwoLAME mpeg2 encoder plugin') +[ "$CARCH" = "mips64el" ] || optdepends+=('projectm: for ProjectM visualisation plugin') +optdepends+=('libcaca: for colored ASCII art video output' 'libgme: for libgme plugin' 'librsvg: for SVG plugin' 'gnome-vfs: for GNOME Virtual File System support' @@ -65,6 +65,7 @@ build() { sed -i -e 's:truetype/freefont:TTF:g' modules/text_renderer/freetype.c sed -i -e 's:truetype/ttf-dejavu:TTF:g' modules/visualization/projectm.cpp + [ "$CARCH" = "mips64el" ] && extraconf="--disable-lirc" ./configure --prefix=/usr \ --sysconfdir=/etc \ --disable-rpath \ @@ -78,7 +79,8 @@ build() { --enable-xosd \ --enable-aa \ --enable-vcdx \ - --enable-upnp + --enable-upnp \ + $extraconf make } |