# $Id: PKGBUILD 252478 2015-12-05 16:48:29Z allan $ # Maintainer (Arch): Tobias Powalowski # Maintainer (Hyperbola): André Silva # Maintainer: Omar Vega Ramos pkgname=openexr _pkgname=$pkgname-libre pkgver=2.2.1 pkgrel=1.parabola1 pkgdesc="An high dynamic-range image file format library, without embedded nonfree fonts in the documentation" url="http://www.$pkgname.com/" arch=('i686' 'x86_64' 'armv7h') license=('BSD3') depends=('zlib' 'ilmbase') makedepends=('unoconv' 'libepoxy') replaces=("$_pkgname") conflicts=("$_pkgname") source=("https://repo.parabola.nu/other/${_pkgname}/${_pkgname}-${pkgver}.tar.gz") sha256sums=('c50738c958f9e01e015a8f7fd54e0826d376a5921748876c7448e81d0aa5bb7a') mksource=("http://download.savannah.nongnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz" "https://github.com/${pkgname}/${pkgname}/raw/master/OpenEXR/doc/InterpretingDeepPixels.docx" "https://github.com/${pkgname}/${pkgname}/raw/master/OpenEXR/doc/MultiViewOpenEXR.odt" "https://github.com/${pkgname}/${pkgname}/raw/master/OpenEXR/doc/OpenEXRFileLayout.odt" "https://github.com/${pkgname}/${pkgname}/raw/master/OpenEXR/doc/ReadingAndWritingImageFiles.odt" "https://github.com/${pkgname}/${pkgname}/raw/master/OpenEXR/doc/TechnicalIntroduction.odt") mksha256sums=('8f9a5af6131583404261931d9a5c83de0a425cb4b8b25ddab2b169fbf113aecd' '208147fafb904114e7afa5f632d583be741db765fd341e6ad21b8455a2175436' '38c46075f7efe02e231d32753966ffa463f2a3c4673dd8ea71dd47560c403db0' '20880ea9223606f3721d2fad7f0efdd7dfd7f1e7966bbaddd5aa68dc70c16766' 'a4fdf678244f6c37e5ae126a9385a2e154b824b67e1746ed10bc17907c6b45ba' 'fab77bb2afb3d580387249807300fa26c70eaf46ca23a0036165bafee607dc4e') noextract=(InterpretingDeepPixels.docx MultiViewOpenEXR.odt OpenEXRFileLayout.odt ReadingAndWritingImageFiles.odt TechnicalIntroduction.odt) mksource() { cd "${srcdir}/${pkgname}-${pkgver}" # remove documentation with embedded nonfree fonts rm -rv "doc/"{InterpretingDeepPixels,MultiViewOpenEXR,OpenEXRFileLayout,ReadingAndWritingImageFiles,TechnicalIntroduction,TheoryDeepPixels}.pdf # add source documentation install -m644 -v "${srcdir}/"{InterpretingDeepPixels.docx,{MultiViewOpenEXR,OpenEXRFileLayout,ReadingAndWritingImageFiles,TechnicalIntroduction}.odt} doc # convert source documentation to pdf format and clean source code cd doc unoconv -v -f pdf {InterpretingDeepPixels.docx,{MultiViewOpenEXR,OpenEXRFileLayout,ReadingAndWritingImageFiles,TechnicalIntroduction}.odt} echo "acaboo" rm -rv "${srcdir}/"{_rels,Configurations2,customXml,docProps,META-INF,ObjBFFFDCA{1,3,4,5,7},Object\ 1,ObjectReplacements,Pictures,Thumbnails,word} } prepare() { # remove TheoryDeepPixels.pdf reference sed -i '\|TheoryDeepPixels[.]pdf|d \|InterpretingDeepPixels[.]pdf| s| [\]|| ' "${srcdir}/${pkgname}-${pkgver}/doc/Makefile."{am,in} } build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -m644 "doc/"{InterpretingDeepPixels.docx,{MultiViewOpenEXR,OpenEXRFileLayout,ReadingAndWritingImageFiles,TechnicalIntroduction}.odt} "${pkgdir}/usr/share/doc/OpenEXR-${pkgver}" }