From a2ccf585c2a853f331c315a40ccc4f37ed7aff52 Mon Sep 17 00:00:00 2001 From: Schrijvers Luc Date: Sun, 19 Mar 2023 07:48:38 +0100 Subject: [PATCH] unarr, disable building static library (#7986) --- app-arch/unarr/unarr-1.0.1.recipe | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/app-arch/unarr/unarr-1.0.1.recipe b/app-arch/unarr/unarr-1.0.1.recipe index c1897b099..7077b2db3 100644 --- a/app-arch/unarr/unarr-1.0.1.recipe +++ b/app-arch/unarr/unarr-1.0.1.recipe @@ -10,7 +10,7 @@ COPYRIGHT="The Unarchiver project Felix Kauselmann Bastien Nocera" LICENSE="GNU LGPL v3" -REVISION="2" +REVISION="3" SOURCE_URI="https://github.com/selmf/unarr/archive/v${portVersion}.tar.gz" CHECKSUM_SHA256="0098e3f33182d16c13eb21278696651b170360a9a4d1c0214db4bd7882253223" @@ -69,14 +69,6 @@ BUILD() mkdir -p build cd build - # build static library - cmake .. \ - -DCMAKE_BUILD_TYPE:STRING="Release" \ - -DBUILD_SHARED_LIBS=OFF \ - $cmakeDirArgs - make $jobArgs - - # build shared library too cmake .. \ -DCMAKE_BUILD_TYPE:STRING="Release" \ -DBUILD_SHARED_LIBS=ON \ @@ -87,7 +79,6 @@ BUILD() INSTALL() { mkdir -p $binDir $libDir $includeDir - cp build/libunarr.a $libDir cp -P build/libunarr.so* $libDir cp unarr.h $includeDir @@ -96,6 +87,7 @@ INSTALL() prepareInstalledDevelLib libunarr fixPkgconfig + packageEntries devel \ $developDir }