Date: Tuesday, February 12, 2019 @ 20:09:53
  Author: alucryd
Revision: 346140

archrelease: copy trunk to extra-x86_64

Added:
  libbluray/repos/extra-x86_64/PKGBUILD
    (from rev 346139, libbluray/trunk/PKGBUILD)
Deleted:
  libbluray/repos/extra-x86_64/PKGBUILD

----------+
 PKGBUILD |   94 +++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 58 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2019-02-12 20:09:44 UTC (rev 346139)
+++ PKGBUILD    2019-02-12 20:09:53 UTC (rev 346140)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin <aluc...@archlinux.org>
-# Contributor: Ionut Biru <ib...@archlinux.org>
-# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
-# Contributor: Andrew Cook <aris...@gmail.com>
-
-pkgname=libbluray
-pkgver=1.0.2
-pkgrel=2
-pkgdesc='Library to access Blu-Ray disks for video playback'
-arch=('x86_64')
-url='http://www.videolan.org/developers/libbluray.html'
-license=('LGPL2.1')
-depends=('fontconfig' 'libxml2'
-         'libfreetype.so')
-makedepends=('apache-ant' 'java-environment=8')
-optdepends=('java-runtime=8: BD-J library')
-provides=('libbluray.so')
-source=("https://download.videolan.org/pub/videolan/libbluray/${pkgver}/libbluray-${pkgver}.tar.bz2";)
-sha256sums=('6d9e7c4e416f664c330d9fa5a05ad79a3fb39b95adfc3fd6910cbed503b7aeff')
-
-build() {
-  cd libbluray-${pkgver}
-
-  ./configure \
-    --prefix='/usr'
-  make
-}
-
-package() {
-  cd libbluray-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: libbluray/repos/extra-x86_64/PKGBUILD (from rev 346139, 
libbluray/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2019-02-12 20:09:53 UTC (rev 346140)
@@ -0,0 +1,58 @@
+# Maintainer: Maxime Gauduin <aluc...@archlinux.org>
+# Contributor: Ionut Biru <ib...@archlinux.org>
+# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
+# Contributor: Andrew Cook <aris...@gmail.com>
+
+pkgname=libbluray
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='Library to access Blu-Ray disks for video playback'
+arch=(x86_64)
+url='http://www.videolan.org/developers/libbluray.html'
+license=(LGPL2.1)
+depends=(
+  fontconfig
+  libfreetype.so
+  libxml2
+)
+makedepends=(
+  apache-ant
+  git
+  java-environment=8
+)
+optdepends=('java-runtime=8: BD-J library')
+provides=(libbluray.so)
+source=(
+  git+https://code.videolan.org/videolan/libbluray.git#tag=${pkgver}
+  git+https://code.videolan.org/videolan/libudfread.git
+)
+sha256sums=(
+  SKIP
+  SKIP
+)
+
+prepare() {
+  cd libbluray
+
+  for submodule in contrib/libudfread; do
+    git submodule init ${submodule}
+    git config submodule.${submodule}.url ../${submodule#*/}
+    git submodule update ${submodule}
+  done
+
+  autoreconf -fiv
+}
+
+build() {
+  cd libbluray
+
+  ./configure \
+    --prefix='/usr'
+  make
+}
+
+package() {
+  make DESTDIR="${pkgdir}" -C libbluray install
+}
+
+# vim: ts=2 sw=2 et:

Reply via email to