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

pkgname=libbluray-git
pkgver=0.9.2.154.g82c69be
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'
         'java-environment'
         'fontconfig'
         )
makedepends=('git'
             'apache-ant'
             'libaacs'
             )
optdepends=('libaacs: Enable AACS decryption')
provides=('libbluray' 'libbluray.so')
conflicts=('libbluray')
source=('git+https://git.videolan.org/git/libbluray.git'
        'git+https://git.videolan.org/git/libudfread.git'
        )
sha1sums=('SKIP'
          'SKIP'
          )

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

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

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

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

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