mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
937 B
Bash
23 lines
937 B
Bash
# $Id: PKGBUILD 33096 2009-04-04 11:39:00Z jgc $
|
|
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
|
|
# Contributor: Rouslan Solomakhin <rouslan@localnet.com>
|
|
# Contributor: dorphell <dorphell@archlinux.org>
|
|
pkgname=oxine
|
|
pkgver=0.7.1
|
|
pkgrel=2
|
|
pkgdesc="oxine is a lightweight, purely osd based xine frontend for set-top boxes and home entertainment systems."
|
|
arch=('i686' 'x86_64')
|
|
depends=('xine-lib>=1.1.16.2' 'libexif>=0.6.17' 'eject' 'libcdio>=0.81' 'curl>=7.19.4' 'libxinerama' 'libsm' 'libxtst')
|
|
makedepends=('pkgconfig')
|
|
license=('GPL')
|
|
url="http://oxine.sourceforge.net/"
|
|
source=(http://downloads.sourceforge.net/sourceforge/oxine/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('2a2d05ee21892624e35cf539e532c0dd')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-hal \
|
|
--without-imagemagick --disable-gdkpixbuf || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|