Date: Sunday, December 11, 2011 @ 09:34:07 Author: ibiru Revision: 144943
initial upload Added: libbluray/ libbluray/trunk/ libbluray/trunk/PKGBUILD ----------+ PKGBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) Added: libbluray/trunk/PKGBUILD =================================================================== --- libbluray/trunk/PKGBUILD (rev 0) +++ libbluray/trunk/PKGBUILD 2011-12-11 14:34:07 UTC (rev 144943) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Ionut Biru <[email protected]> +# Contributor: Andrew Cook <[email protected]> + +pkgname=libbluray +pkgver=0.2.1 +pkgrel=1 +pkgdesc="Library to access Blu-Ray disks for video playback" +arch=('i686' 'x86_64') +url="http://www.videolan.org/developers/libbluray.html" +license=('LGPL2.1') +depends=('libxml2') +options=(!libtool) +source=(ftp://ftp.videolan.org/pub/videolan/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2) +sha512sums=('b938ca838d6e4ceaac74ca8850efb9d8c312638b70a9b42ebffd63bf703341eab3ce98b6edeea9b3284ba1d0f8b46fe803db1f668e72752e1e23e96435ac77dc') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --disable-static + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et: Property changes on: libbluray/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id
