diff --git a/libbluray/.SRCINFO b/libbluray/.SRCINFO new file mode 100644 index 0000000000..d5ed6ca827 --- /dev/null +++ b/libbluray/.SRCINFO @@ -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 diff --git a/libbluray/PKGBUILD b/libbluray/PKGBUILD index 1cd030b984..9aebdbfe26 100644 --- a/libbluray/PKGBUILD +++ b/libbluray/PKGBUILD @@ -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 }