PKGBUILDs/community/openimageio/PKGBUILD

49 lines
1.3 KiB
Bash
Raw Normal View History

2013-05-21 20:28:53 +00:00
# Contributor: SpepS <dreamspepser at yahoo dot it>
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2018-09-22 18:05:12 +00:00
# - link against libatomic for v5/v6
2013-05-21 20:28:53 +00:00
pkgname=openimageio
2019-08-12 12:53:02 +00:00
pkgver=2.0.10
2019-09-03 13:48:37 +00:00
pkgrel=2
2013-05-21 20:28:53 +00:00
pkgdesc="A library for reading and writing images, including classes, utilities, and applications"
2018-01-06 20:59:28 +00:00
arch=(x86_64)
2013-05-21 20:28:53 +00:00
url="http://www.openimageio.org/"
license=('custom')
2019-09-03 13:48:37 +00:00
depends=('openexr' 'boost-libs' 'jasper' 'glew' 'libtiff' 'opencolorio' 'intel-tbb' 'openssl' 'libpng' 'libraw' 'libwebp')
2019-03-18 18:07:12 +00:00
makedepends=('cmake' 'qt5-base' 'python' 'boost' 'mesa' 'git' 'freetype2' 'fontconfig' 'libxrender')
2018-07-07 17:50:29 +00:00
optdepends=('qt5-base: iv image viewer'
2019-03-18 18:07:12 +00:00
'python: bindings support')
2018-09-22 18:05:12 +00:00
source=(git+git://github.com/OpenImageIO/oiio.git#tag=Release-${pkgver})
md5sums=('SKIP')
2014-11-08 06:59:01 +00:00
2019-03-18 18:07:12 +00:00
prepare() {
mkdir oiio/build
}
2013-05-21 20:28:53 +00:00
2019-03-18 18:07:12 +00:00
build() {
cd oiio/build
2013-05-21 20:28:53 +00:00
2018-09-22 18:05:12 +00:00
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LDFLAGS="-latomic $LDFLAGS"
2015-12-23 18:56:35 +00:00
cmake .. \
2019-03-19 18:34:42 +00:00
-DUSE_PYTHON=ON \
-DPYTHON_VERSION=3.7 \
2015-12-23 18:56:35 +00:00
-DUSE_OPENSSL=ON \
2013-05-21 20:28:53 +00:00
-DCMAKE_INSTALL_PREFIX=/usr \
2018-03-29 14:35:27 +00:00
-DCMAKE_INSTALL_LIBDIR=lib \
2015-12-23 18:56:35 +00:00
-DOIIO_BUILD_TESTS=ON \
-DOIIO_BUILD_TOOLS=ON \
2017-06-03 01:30:37 +00:00
-DSTOP_ON_WARNING=OFF
2013-05-21 20:28:53 +00:00
make
}
package() {
2014-05-15 04:24:05 +00:00
cd oiio/build
2013-05-21 20:28:53 +00:00
make DESTDIR="$pkgdir" install
2019-07-13 21:51:48 +00:00
install -Dm644 ../LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE".md
2013-05-21 20:28:53 +00:00
}