[arch-commits] Commit in openimageio/repos (2 files)
Sven-Hendrik Haase
svenstaro at archlinux.org
Thu Apr 23 05:29:30 UTC 2020
Date: Thursday, April 23, 2020 @ 05:29:29
Author: svenstaro
Revision: 617766
archrelease: copy trunk to community-testing-x86_64
Added:
openimageio/repos/community-testing-x86_64/
openimageio/repos/community-testing-x86_64/PKGBUILD
(from rev 617765, openimageio/trunk/PKGBUILD)
----------+
PKGBUILD | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
Copied: openimageio/repos/community-testing-x86_64/PKGBUILD (from rev 617765, openimageio/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2020-04-23 05:29:29 UTC (rev 617766)
@@ -0,0 +1,42 @@
+# Maintainer: Sven-Hendrik Haase <svenstaro at gmail.com>
+# Contributor: SpepS <dreamspepser at yahoo dot it>
+
+pkgname=openimageio
+pkgver=2.1.11.2
+pkgrel=3
+pkgdesc="A library for reading and writing images, including classes, utilities, and applications"
+arch=(x86_64)
+url="http://www.openimageio.org/"
+license=('custom')
+depends=('openexr' 'boost-libs' 'openjpeg2' 'glew' 'libtiff' 'opencolorio' 'intel-tbb' 'libpng' 'libraw' 'libwebp')
+makedepends=('cmake' 'qt5-base' 'python' 'boost' 'mesa' 'git' 'freetype2' 'fontconfig' 'libxrender')
+optdepends=('qt5-base: iv image viewer'
+ 'python: bindings support')
+source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
+md5sums=('SKIP')
+
+prepare() {
+ mkdir oiio/build
+}
+
+build() {
+ cd oiio/build
+
+ cmake .. \
+ -DUSE_PYTHON=ON \
+ -DPYTHON_VERSION=3.8 \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DOIIO_BUILD_TESTS=ON \
+ -DOIIO_BUILD_TOOLS=ON \
+ -DSTOP_ON_WARNING=OFF
+ make
+}
+
+package() {
+ cd oiio/build
+
+ make DESTDIR="$pkgdir" install
+
+ install -Dm644 ../LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE".md
+}
More information about the arch-commits
mailing list