diff options
author | root <root@rshg054.dnsready.net> | 2011-12-12 23:14:53 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-12 23:14:53 +0000 |
commit | cb9c375209c236c16557878a1b864f91de27b88d (patch) | |
tree | b0a7d6c0d887620c16ad1a95c9dfef632cb1b877 /extra/libbluray | |
parent | 22b0fa480661b6247dabf39059fe629e1d233a9a (diff) |
Mon Dec 12 23:14:53 UTC 2011
Diffstat (limited to 'extra/libbluray')
-rw-r--r-- | extra/libbluray/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/libbluray/PKGBUILD b/extra/libbluray/PKGBUILD new file mode 100644 index 000000000..cad6d04c5 --- /dev/null +++ b/extra/libbluray/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 144944 2011-12-11 14:37:09Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> +# Contributor: Andrew Cook <ariscop@gmail.com> + +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: |