diff options
author | Britney Fransen <brfransen@gmail.com> | 2019-01-28 20:00:35 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2019-01-28 20:00:35 (GMT) |
commit | 69bf61cc48f126016300d46604c837320b93e94e (patch) | |
tree | 11ddad1beff6ad8b0c2a43902f8bfe2fafbad86a /abs | |
parent | 75ebc36309ccccdb4d5d53d1ae6eb666589bdde9 (diff) | |
download | linhes_pkgbuild-69bf61cc48f126016300d46604c837320b93e94e.zip linhes_pkgbuild-69bf61cc48f126016300d46604c837320b93e94e.tar.gz linhes_pkgbuild-69bf61cc48f126016300d46604c837320b93e94e.tar.bz2 |
libbluray: update to 1.0.2
Diffstat (limited to 'abs')
-rw-r--r-- | abs/extra/libbluray/PKGBUILD | 35 |
1 files changed, 21 insertions, 14 deletions
diff --git a/abs/extra/libbluray/PKGBUILD b/abs/extra/libbluray/PKGBUILD index d596927..61077e3 100644 --- a/abs/extra/libbluray/PKGBUILD +++ b/abs/extra/libbluray/PKGBUILD @@ -1,28 +1,35 @@ -# $Id$ -# Maintainer: Ionut Biru <ibiru@archlinux.org> -# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> +# Maintainer: Maxime Gauduin <alucryd@archlinux.org> +# Contributor: Ionut Biru <ibiru@archlinux.org> +# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> # Contributor: Andrew Cook <ariscop@gmail.com> pkgname=libbluray -pkgver=0.9.2 -pkgrel=1 +pkgver=1.0.2 +pkgrel=2 pkgdesc='Library to access Blu-Ray disks for video playback' -arch=('i686' 'x86_64') +arch=('x86_64') url='http://www.videolan.org/developers/libbluray.html' license=('LGPL2.1') -depends=('libxml2' 'freetype2' 'fontconfig') -makedepends=('apache-ant') -optdepends=('java-environment: for BD-J library') +depends=('fontconfig' 'libxml2' + 'libfreetype.so') +makedepends=('apache-ant' 'java-environment=8') +optdepends=('java-runtime=8: BD-J library') provides=('libbluray.so') -source=(ftp://ftp.videolan.org/pub/videolan/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2) -md5sums=('836b2de16547776bf2726166cf796f13') +source=("https://download.videolan.org/pub/videolan/libbluray/${pkgver}/libbluray-${pkgver}.tar.bz2") +sha256sums=('6d9e7c4e416f664c330d9fa5a05ad79a3fb39b95adfc3fd6910cbed503b7aeff') build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr + cd libbluray-${pkgver} + + ./configure \ + --prefix='/usr' make } package() { - make DESTDIR="$pkgdir" -C $pkgname-$pkgver install + cd libbluray-${pkgver} + + make DESTDIR="${pkgdir}" install } + +# vim: ts=2 sw=2 et: |