extra/openexr to 3.2.1-1

This commit is contained in:
Kevin Mihelich 2023-09-27 18:51:01 +00:00
parent e6a90ba7e0
commit 9552cb66dd
2 changed files with 23 additions and 4 deletions

16
extra/openexr/.SRCINFO Normal file
View file

@ -0,0 +1,16 @@
pkgbase = openexr
pkgdesc = A high dynamic-range image file format library
pkgver = 3.2.1
pkgrel = 1
url = https://www.openexr.com/
arch = x86_64
license = BSD
makedepends = cmake
depends = gcc-libs
depends = glibc
depends = imath
depends = libdeflate
source = https://github.com/openexr/openexr/archive/v3.2.1/openexr-3.2.1.tar.gz
sha256sums = 61e175aa2203399fb3c8c2288752fbea3c2637680d50b6e306ea5f8ffdd46a9b
pkgname = openexr

View file

@ -4,16 +4,19 @@
# - build v7 with vfpv3, neon is broken
pkgname=openexr
pkgver=3.2.0
pkgrel=2
pkgver=3.2.1
pkgrel=1
pkgdesc='A high dynamic-range image file format library'
url='https://www.openexr.com/'
arch=(x86_64)
license=(BSD)
depends=(imath libdeflate)
depends=(gcc-libs
glibc
imath
libdeflate)
makedepends=(cmake)
source=(https://github.com/openexr/openexr/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
sha256sums=('b1b200606640547fceff0d3ebe01ac05c4a7ae2a131be7e9b3e5b9f491ef35b3')
sha256sums=('61e175aa2203399fb3c8c2288752fbea3c2637680d50b6e306ea5f8ffdd46a9b')
build() {
[[ $CARCH == "armv7h" ]] && CFLAGS=`echo $CFLAGS | sed -e 's/neon/vfpv3/'` && CXXFLAGS="$CFLAGS"