From 45b95440bc73a61687978adabf43f9a842e9620d Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Tue, 5 Apr 2022 17:36:35 +0200 Subject: [PATCH] - bcond_with tests --- ka5-yakuake.spec | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ka5-yakuake.spec b/ka5-yakuake.spec index 3c15767..5280a13 100644 --- a/ka5-yakuake.spec +++ b/ka5-yakuake.spec @@ -1,3 +1,6 @@ +# +# Conditional build: +%bcond_with tests # build with tests %define kdeappsver 21.12.3 %define qtver 5.9.0 %define kaname yakuake @@ -54,11 +57,17 @@ install -d build cd build %cmake \ -G Ninja \ + %{!?with_tests:-DBUILD_TESTING=OFF} \ -DHTML_INSTALL_DIR=%{_kdedocdir} \ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \ .. %ninja_build +%if %{with tests} +ctest +%endif + + %install rm -rf $RPM_BUILD_ROOT %ninja_install -C build -- 2.44.0