summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d0fe87d09f02a935db923eb00320070f26694ad5 (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
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>

pkgname=libbluray-git
pkgver=1.0.1.72.gb5e30fca
pkgrel=1
pkgdesc="Library to access Blu-Ray disks for video playback. (GIT version)"
arch=('i686' 'x86_64')
license=('LGPL2.1')
url='http://www.videolan.org/developers/libbluray.html'
depends=('libxml2'
         'fontconfig'
         )
makedepends=('git'
             'apache-ant'
             'libaacs'
             )
optdepends=('libaacs: Enable AACS decryption'
            'java-environment: BD-J library'
            )
provides=('libbluray'
          'libbluray.so'
          )
conflicts=('libbluray')
source=('git+https://git.videolan.org/git/libbluray.git'
        'git+https://git.videolan.org/git/libudfread.git'
        )
sha256sums=('SKIP'
            'SKIP'
           )

pkgver() {
  cd libbluray
  echo "$(git describe --long --tags | tr - .)"
}

prepare() {
  export JDK_HOME="/usr/lib/jvm/default"

  cd libbluray
  git config submodule.contrib/libudfread.url "${srcdir}/libudfread"
  git submodule update --init
  ./bootstrap
}

build() {
  cd libbluray
  ./configure \
    --prefix=/usr \
    --disable-static \
    --enable-udf

  make
}

package() {
  make -C libbluray DESTDIR="${pkgdir}" install
}