blob: 419d4d49d85db228c150bc1833ccc3e6dfd4ea5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>
pkgname=libbluray-git
pkgver=1.4.0.7.gd41111c1
pkgrel=1
pkgdesc='Library to access Blu-Ray disks for video playback. (GIT version)'
arch=('x86_64')
license=('LGPL2.1')
url='https://www.videolan.org/developers/libbluray.html'
depends=(
'libxml2'
'fontconfig'
'freetype2'
'libudfread'
'glibc' # libc.so
)
makedepends=(
'git'
'apache-ant'
'java-environment'
)
optdepends=(
'libaacs: Enable AACS decryption'
'java-runtime: BD-J library'
)
provides=(
'libbluray'
'libbluray.so'
)
conflicts=('libbluray')
source=('git+https://code.videolan.org/videolan/libbluray.git')
sha256sums=('SKIP')
pkgver() {
cd libbluray
echo "$(git describe --long --tags | tr - .)"
}
build() {
arch-meson libbluray build \
-D embed_udfread=false -D enable_tools=true
ninja -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
make
}
package() {
depends+=(
'libxml2.so'
'libfontconfig.so'
'libfreetype.so'
'libudfread.so'
)
DESTDIR="${pkgdir}" meson install -C build
}
|