* update openexr to 3.3.2-1

This commit is contained in:
Alexander Baldeck 2024-12-06 10:09:14 +01:00
parent b47f6e7e92
commit 3b474f4133
3 changed files with 18 additions and 11 deletions

View File

@ -1,7 +1,7 @@
pkgbase = openexr
pkgdesc = A high dynamic-range image file format library
pkgver = 3.2.4
pkgrel = 1.1
pkgver = 3.3.2
pkgrel = 1
url = https://www.openexr.com/
arch = x86_64
arch = powerpc64le
@ -10,11 +10,12 @@ pkgbase = openexr
arch = riscv64
license = BSD-3-Clause
makedepends = cmake
makedepends = git
depends = gcc-libs
depends = glibc
depends = imath
depends = libdeflate
source = https://github.com/openexr/openexr/archive/v3.2.4/openexr-3.2.4.tar.gz
sha256sums = 81e6518f2c4656fdeaf18a018f135e96a96e7f66dbe1c1f05860dd94772176cc
source = git+https://github.com/openexr/openexr#tag=v3.3.2
sha256sums = 549c95f71f36f7e6164828f6646b1ec1c4efff6994431416d9a7884345c5ab55
pkgname = openexr

5
openexr/.nvchecker.toml Normal file
View File

@ -0,0 +1,5 @@
[openexr]
source = 'github'
github = 'AcademySoftwareFoundation/openexr'
use_latest_release = true
prefix = 'v'

View File

@ -2,8 +2,8 @@
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
pkgname=openexr
pkgver=3.2.4
pkgrel=1.1
pkgver=3.3.2
pkgrel=1
pkgdesc='A high dynamic-range image file format library'
url='https://www.openexr.com/'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
@ -12,12 +12,13 @@ depends=(gcc-libs
glibc
imath
libdeflate)
makedepends=(cmake)
source=(https://github.com/openexr/openexr/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
sha256sums=('81e6518f2c4656fdeaf18a018f135e96a96e7f66dbe1c1f05860dd94772176cc')
makedepends=(cmake
git)
source=(git+https://github.com/openexr/openexr#tag=v$pkgver)
sha256sums=('549c95f71f36f7e6164828f6646b1ec1c4efff6994431416d9a7884345c5ab55')
build() {
cmake -B build -S $pkgname-$pkgver \
cmake -B build -S $pkgname \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=None
cmake --build build
@ -25,5 +26,5 @@ build() {
package() {
DESTDIR="$pkgdir" cmake --install build
install -Dm644 $pkgname-$pkgver/LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname
install -Dm644 $pkgname/LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname
}