diff options
author | oaken-source <oaken-source@parabola.nu> | 2019-10-28 14:57:07 +0100 |
---|---|---|
committer | oaken-source <oaken-source@parabola.nu> | 2019-10-28 14:57:35 +0100 |
commit | ee8aef7cc82c2d40b52b305f0dbecef6f2a83bf5 (patch) | |
tree | 84e7657a7e4b7d4eb18229570e16a033cae3d7ac /libre/openexr | |
parent | 0bcac1a53c557268a7ded1f5a65e5ac0500cb824 (diff) | |
download | abslibre-ee8aef7cc82c2d40b52b305f0dbecef6f2a83bf5.tar.gz abslibre-ee8aef7cc82c2d40b52b305f0dbecef6f2a83bf5.tar.bz2 abslibre-ee8aef7cc82c2d40b52b305f0dbecef6f2a83bf5.zip |
libre/openexr: unblacklisted and removed
Diffstat (limited to 'libre/openexr')
-rw-r--r-- | libre/openexr/PKGBUILD | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/libre/openexr/PKGBUILD b/libre/openexr/PKGBUILD deleted file mode 100644 index e71898a49..000000000 --- a/libre/openexr/PKGBUILD +++ /dev/null @@ -1,70 +0,0 @@ -# Maintainer (Arch): Tobias Powalowski <tpowa@archlinux.org> -# Maintainer (Hyperbola): André Silva <emulatorman@hyperbola.info> -# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> - -pkgname=openexr -_pkgname=$pkgname-libre -pkgver=2.3.0 -pkgrel=1 -pkgrel+=.par2 -pkgdesc="An high dynamic-range image file format library" -pkgdesc+=", without embedded nonfree fonts in the documentation" -url="https://www.openexr.com/" -arch=('x86_64') -arch+=('i686' '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=('2382fb28c34289a9ad6a9e7666a50a89e8848980609e96a9b4b37c6b97b00a67') -mksource=("https://github.com/openexr/openexr/releases/download/v$pkgver/$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=('fd6cb3a87f8c1a233be17b94c74799e6241d50fc5efd4df75c7a4b9cf4e25ea6' - '208147fafb904114e7afa5f632d583be741db765fd341e6ad21b8455a2175436' - '38c46075f7efe02e231d32753966ffa463f2a3c4673dd8ea71dd47560c403db0' - '20880ea9223606f3721d2fad7f0efdd7dfd7f1e7966bbaddd5aa68dc70c16766' - 'a4fdf678244f6c37e5ae126a9385a2e154b824b67e1746ed10bc17907c6b45ba' - 'fab77bb2afb3d580387249807300fa26c70eaf46ca23a0036165bafee607dc4e') -noextract=(InterpretingDeepPixels.docx MultiViewOpenEXR.odt OpenEXRFileLayout.odt ReadingAndWritingImageFiles.odt TechnicalIntroduction.odt) - -mksource() { - cd "${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 "${pkgname}-${pkgver}" - ./configure --prefix=/usr - make -} - -package() { - cd "${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 "doc/"{InterpretingDeepPixels.docx,{MultiViewOpenEXR,OpenEXRFileLayout,ReadingAndWritingImageFiles,TechnicalIntroduction}.odt} "${pkgdir}/usr/share/doc/${pkgname}" -} |