From be2d287057865cb0724cebae83fc2f8615184ca7 Mon Sep 17 00:00:00 2001 From: Krassy Boykinov Date: Tue, 10 Dec 2024 13:59:53 +0100 Subject: [PATCH] main/openjpeg: upgrade to 2.5.3 * switch from using `OPENJPEG_INSTALL_LIB_DIR` to using `CMAKE_INSTALL_LIBDIR` as build parameter * add `BUILD_THIRDPARTY=NO` as explicit build parameter as a safeguard against vendoring in dependencies --- main/openjpeg/APKBUILD | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/main/openjpeg/APKBUILD b/main/openjpeg/APKBUILD index 5969956ab0b..47a35f6312a 100644 --- a/main/openjpeg/APKBUILD +++ b/main/openjpeg/APKBUILD @@ -1,6 +1,6 @@ # Maintainer: Francesco Colista pkgname=openjpeg -pkgver=2.5.2 +pkgver=2.5.3 pkgrel=0 pkgdesc="Open-source implementation of JPEG2000 image codec" url="https://www.openjpeg.org/" @@ -57,8 +57,9 @@ source="https://github.com/uclouvain/openjpeg/archive/v$pkgver/openjpeg-v$pkgver build() { cmake -B build -G Ninja \ -DCMAKE_BUILD_TYPE=MinSizeRel \ + -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_INSTALL_PREFIX=/usr \ - -DOPENJPEG_INSTALL_LIB_DIR=lib + -DBUILD_THIRDPARTY=NO # Do not vendor in other libs cmake --build build } @@ -72,5 +73,5 @@ tools() { } sha512sums=" -24c058b3e0710e689ba7fd6bce8a88353ce64e825b2e5bbf6b00ca3f2a2ec1e9c70a72e0252a5c89d10c537cf84d55af54bf2f16c58ca01db98c2018cf132e1a openjpeg-v2.5.2.tar.gz +22378f5c38c1eb8ade853716897201d8a253024638bdf94fd9851d6a456601071e705c797c5ffeeb6924be14d7356f9a67f15c2b99e96f7d27fc375a9d94505a openjpeg-v2.5.3.tar.gz "