summaryrefslogtreecommitdiff
path: root/testing/oxine
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-01-08 23:14:45 +0000
committerroot <root@rshg054.dnsready.net>2012-01-08 23:14:45 +0000
commit46783b68621b6ad45cdd9ed64cfa8cdcfbc6f318 (patch)
treeeb2bd0aa427b4ad1659249fa8b86467dcd68e0dc /testing/oxine
parent6aeb515f4afd10afb53b21df18d03b0d5f3a200f (diff)
Sun Jan 8 23:14:45 UTC 2012
Diffstat (limited to 'testing/oxine')
-rw-r--r--testing/oxine/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/oxine/PKGBUILD b/testing/oxine/PKGBUILD
new file mode 100644
index 000000000..6ccda1c01
--- /dev/null
+++ b/testing/oxine/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 146255 2012-01-07 05:13:36Z eric $
+# Maintainer: Alexander Baldeck <alexander@archlinux.org>
+# Contributor: Rouslan Solomakhin <rouslan@localnet.com>
+# Contributor: dorphell <dorphell@archlinux.org>
+
+pkgname=oxine
+pkgver=0.7.1
+pkgrel=5
+pkgdesc="A lightweight, purely osd based xine frontend for set-top boxes and home entertainment systems"
+arch=('i686' 'x86_64')
+url="http://oxine.sourceforge.net/"
+license=('GPL')
+depends=('xine-lib' 'libexif' 'eject' 'libcdio' 'curl' 'libxtst')
+source=(http://downloads.sourceforge.net/sourceforge/oxine/${pkgname}-${pkgver}.tar.gz)
+md5sums=('2a2d05ee21892624e35cf539e532c0dd')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ sed -i 's|#include <curl/types.h>||' configure src/download.c
+ ./configure --prefix=/usr --disable-hal --without-jsw --disable-extractor \
+ --without-imagemagick --disable-gdkpixbuf --disable-weather
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}