blob: ccbc1ae96498995a14dd88c77c53217d1d044a35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Maintainer: Alexsandr Pavlov <kidoz at mail dot ru>
pkgname=vlc-nogui
pkgver=1.1.13
pkgrel=1
pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player"
arch=('i686' 'x86_64')
url="http://www.videolan.org/vlc/"
license=('GPL')
depends=('a52dec' 'faad2' 'fluidsynth' 'libmtp' 'libdvbpsi' 'lirc-utils'
'libdca' 'libproxy' 'sdl_image' 'libdvdnav'
'lua' 'libv4l' 'libcddb' 'smbclient' 'libmatroska' 'zvbi'
'taglib' 'sysfsutils' 'libmpcdec' 'ffmpeg' 'xcb-util-keysyms'
'libshout' 'libmad' 'fribidi' 'libmpeg2' 'libmodplug'
'ttf-freefont' 'libxv' 'libass' 'xdg-utils' 'libxpm' 'libupnp')
makedepends=('alsa-lib' 'avahi' 'jack' 'live-media' 'pkgconfig' 'udev')
optdepends=('avahi: for service discovery using bonjour protocol'
'libnotify: for notification plugin')
provides=('vlc')
conflicts=('vlc' 'vlc-plugin')
replaces=('vlc' 'vlc-plugin')
options=('!libtool')
source=(http://downloads.videolan.org/pub/videolan/vlc/${pkgver}/vlc-${pkgver}.tar.bz2)
build() {
cd "${srcdir}/vlc-${pkgver}"
sed -i -e 's:truetype/freefont:TTF:g' modules/misc/freetype.c
./configure --prefix=/usr \
--enable-faad \
--enable-v4l \
--enable-theora \
--enable-flac \
--enable-snapshot \
--enable-ogg \
--enable-shout \
--enable-lirc \
--enable-pvr \
--enable-realrtsp \
--disable-rpath \
--disable-qt4 \
--disable-skins2 \
--disable-glx \
--with-live555-tree=/usr/lib/live
make
}
package() {
cd "${srcdir}/vlc-${pkgver}"
make DESTDIR=${pkgdir}/ install
rm -rf ${pkgdir}/usr/share/applications
rm -rf ${pkgdir}/usr/share/kde4
rm -rf ${pkgdir}/usr/share/icons
rm ${pkgdir}/usr/share/vlc/vlc.ico
}
md5sums=('9678fb7a04808b6e0de63746d35e4bb1')
|