From 1f88ee1287770003b580ffb5d15eaa279c714f32 Mon Sep 17 00:00:00 2001 From: kth5 Date: Wed, 5 Jul 2023 22:17:45 +0200 Subject: [PATCH] * update minizip-ng to 4.0.0-2 --- minizip-ng/PKGBUILD | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/minizip-ng/PKGBUILD b/minizip-ng/PKGBUILD index 0a4de58f34..4cbfb9b208 100644 --- a/minizip-ng/PKGBUILD +++ b/minizip-ng/PKGBUILD @@ -2,8 +2,8 @@ # Maintainer: Antonio Rojas pkgname=minizip-ng -pkgver=3.0.10 -pkgrel=1 +pkgver=4.0.0 +pkgrel=2 pkgdesc='Fork of the popular zip manipulation library found in the zlib distribution' arch=(x86_64 powerpc64le powerpc64 powerpc riscv64) url='https://github.com/zlib-ng/minizip-ng' @@ -11,18 +11,17 @@ license=(custom) depends=(openssl bzip2 zstd) makedepends=(cmake) source=(https://github.com/zlib-ng/minizip-ng/archive/$pkgver/$pkgname-$pkgver.tar.gz) -sha256sums=('d4a549731d8c7074e421dbab6d8b8ad0a93067752fe767c464f0f40fa5f0a80d') +sha256sums=('f9062e576de026fd5026d65597de3b05263cd4d91400cacdbbe36dfa8a642fff') build() { cmake -B build -S $pkgname-$pkgver \ -DCMAKE_INSTALL_PREFIX=/usr \ - -DMZ_PROJECT_SUFFIX="-ng" \ + -DMZ_LIB_SUFFIX="-ng" \ -DBUILD_SHARED_LIBS=ON cmake --build build } package() { DESTDIR="$pkgdir" cmake --install build - rm "$pkgdir"/usr/include/{,un}zip.h # Conflict with libzip install -Dm644 $pkgname-$pkgver/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname }