* update libbluray to 1.3.4-2

This commit is contained in:
Alexander Baldeck 2024-09-26 20:22:02 +02:00
parent 3e234efb57
commit 3c98a89282
2 changed files with 27 additions and 5 deletions

22
libbluray/.SRCINFO Normal file
View File

@ -0,0 +1,22 @@
pkgbase = libbluray
pkgdesc = Library to access Blu-Ray disks for video playback
pkgver = 1.3.4
pkgrel = 2
url = https://www.videolan.org/developers/libbluray.html
arch = x86_64
license = LGPL-2.1-only
makedepends = apache-ant
makedepends = git
makedepends = java-environment=17
depends = fontconfig
depends = glibc
depends = libfreetype.so
depends = libxml2
optdepends = java-runtime: BD-J library
provides = libbluray.so
source = git+https://code.videolan.org/videolan/libbluray.git#tag=bb5bc108ec695889855f06df338958004ff289ef
source = git+https://code.videolan.org/videolan/libudfread.git
b2sums = SKIP
b2sums = SKIP
pkgname = libbluray

View File

@ -6,20 +6,21 @@
pkgname=libbluray
pkgver=1.3.4
pkgrel=1
pkgrel=2
pkgdesc='Library to access Blu-Ray disks for video playback'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url=https://www.videolan.org/developers/libbluray.html
license=(LGPL2.1)
license=(LGPL-2.1-only)
depends=(
fontconfig
glibc
libfreetype.so
libxml2
)
makedepends=(
apache-ant
git
java-environment
"java-environment<=17"
)
optdepends=('java-runtime: BD-J library')
provides=(libbluray.so)
@ -40,11 +41,10 @@ pkgver() {
prepare() {
cd libbluray
git config --global protocol.file.allow always
for submodule in contrib/libudfread; do
git submodule init ${submodule}
git config submodule.${submodule}.url ../${submodule#*/}
git submodule update ${submodule}
git -c protocol.file.allow=always submodule update ${submodule}
done
autoreconf -fiv
}