summaryrefslogtreecommitdiff
path: root/libre/openexr-libre/PKGBUILD
blob: 29c926e1dfd8d6ddf330de77b46c160d3588863a (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
61
62
63
# $Id: PKGBUILD 191713 2013-07-29 10:21:41Z tpowa $
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
# Maintainer (Parabola): André Silva <emulatorman@parabola.nu>

_pkgname=openexr
pkgname=openexr-libre
pkgver=2.0.1
pkgrel=1
pkgdesc="An high dynamic-range image file format library, without embedded nonfree fonts in the documentation"
url="http://www.openexr.com/"
arch=('i686' 'x86_64' 'mips64el')
license=('BSD')
depends=('zlib' 'ilmbase')
makedepends=('libcups' 'libxinerama')
[ "$CARCH" != "mips64el" ] && makedepends+=('libreoffice-writer' 'jre7-openjdk-headless')
replaces=$_pkgname
conflicts=$_pkgname
provides=$_pkgname=$pkgver
options=('!libtool')
source=("http://download.savannah.nongnu.org/releases/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"
        "http://repo.parabolagnulinux.org/other/${pkgname}/MultiViewOpenEXR.odt"
        "http://repo.parabolagnulinux.org/other/${pkgname}/OpenEXRFileLayout.odt"
        "http://repo.parabolagnulinux.org/other/${pkgname}/ReadingAndWritingImageFiles.odt"
        "http://repo.parabolagnulinux.org/other/${pkgname}/TechnicalIntroduction.odt")
noextract=(MultiViewOpenEXR.odt OpenEXRFileLayout.odt ReadingAndWritingImageFiles.odt TechnicalIntroduction.odt)

build() {
  cd "${srcdir}/${_pkgname}-${pkgver}"
  [ "$CARCH" = "mips64el" ] && sed -i 's/ doc //' Makefile.in  # no libreoffice yet
  ./configure --prefix=/usr
  make
}

package() {
  cd "${srcdir}/${_pkgname}-${pkgver}"

  # remove documentation with embedded nonfree fonts
  rm -rv "doc/"{MultiViewOpenEXR,OpenEXRFileLayout,ReadingAndWritingImageFiles,TechnicalIntroduction}.pdf

  # add source documentation with free fonts
  install -m644 -v "${srcdir}/"{MultiViewOpenEXR,OpenEXRFileLayout,ReadingAndWritingImageFiles,TechnicalIntroduction}.odt doc

  if [ "$CARCH" != "mips64el" ]; then
    # convert documentation to pdf format
    cd doc

    for x in ${noextract[@]}; do
      libreoffice --headless --invisible --convert-to pdf ${x}
    done

    cd ..
  fi

  make DESTDIR="${pkgdir}" install
  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"

  install -m644 "doc/"{MultiViewOpenEXR,OpenEXRFileLayout,ReadingAndWritingImageFiles,TechnicalIntroduction}.odt "${pkgdir}/usr/share/doc/OpenEXR-${pkgver}"
}
md5sums=('4387e6050d2faa65dd5215618ff2ddce'
         '69f117d3c91827e5de47f1e00137a4cc'
         '4d5ffa31f9af63bd5c621c6cbac6c673'
         'de099240193d8a51086dfae914fff3cf'
         'ece8bf90d438b89c6bd9fe4a89cc318a')