summaryrefslogtreecommitdiffstats
path: root/abs
diff options
context:
space:
mode:
authorMichael Hanson <mihanson@linhes.org>2012-01-26 03:53:57 (GMT)
committerMichael Hanson <mihanson@linhes.org>2012-01-26 03:53:57 (GMT)
commita189e12296d6ad1f900943a7d5d9a0f117d73803 (patch)
tree48389d5bb07a7a6214974274aa0db6aff3104588 /abs
parent8dccaace9c7f36aa3513639b67a18c331548714b (diff)
downloadlinhes_pkgbuild-a189e12296d6ad1f900943a7d5d9a0f117d73803.zip
linhes_pkgbuild-a189e12296d6ad1f900943a7d5d9a0f117d73803.tar.gz
linhes_pkgbuild-a189e12296d6ad1f900943a7d5d9a0f117d73803.tar.bz2
vlc-nogui: initial commit. dep of mdd (mythdroid daemon)
Diffstat (limited to 'abs')
-rw-r--r--abs/extra/vlc-nogui/PKGBUILD58
-rw-r--r--abs/extra/vlc-nogui/__changelog2
2 files changed, 60 insertions, 0 deletions
diff --git a/abs/extra/vlc-nogui/PKGBUILD b/abs/extra/vlc-nogui/PKGBUILD
new file mode 100644
index 0000000..ccbc1ae
--- /dev/null
+++ b/abs/extra/vlc-nogui/PKGBUILD
@@ -0,0 +1,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')
diff --git a/abs/extra/vlc-nogui/__changelog b/abs/extra/vlc-nogui/__changelog
new file mode 100644
index 0000000..b20cb01
--- /dev/null
+++ b/abs/extra/vlc-nogui/__changelog
@@ -0,0 +1,2 @@
+2012-01-25: add 'libupnp' 'xcb-util-keysyms' to depends
+ bump to version 1.1.13