quassel, revbump (bump boost requirement) (#12987)

This commit is contained in:
Schrijvers Luc
2025-09-30 19:21:45 +02:00
committed by GitHub
parent d327bd4b42
commit fb50fae956

View File

@@ -12,7 +12,7 @@ HOMEPAGE="https://quassel-irc.org"
COPYRIGHT="2005-2019 The Quassel IRC Team"
LICENSE="GNU GPL v2
GNU GPL v3"
REVISION="1"
REVISION="2"
srcGitRev="b2deed91ef0275ec42aec717294dad01b33e8ded"
SOURCE_URI="https://github.com/quassel/quassel/archive/$srcGitRev.zip"
CHECKSUM_SHA256="39e5dda0e66ee77a43f27de466735d494cb73ddd7e5d8712cadb97b5c267aa9c"
@@ -29,6 +29,8 @@ SECONDARY_ARCHITECTURES="x86"
libVersion="0.14.50"
boostVersion="1.88.0"
PROVIDES="
quassel${secondaryArchSuffix} = $portVersion
app:Quassel = $portVersion
@@ -82,7 +84,7 @@ REQUIRES_client="
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libboost_system$secondaryArchSuffix >= 1.69.0
devel:libboost_system$secondaryArchSuffix >= $boostVersion
devel:libdbus_1$secondaryArchSuffix
devel:libGl$secondaryArchSuffix
devel:libQt5Core$secondaryArchSuffix
@@ -104,7 +106,7 @@ BUILD_PREREQUIRES="
BUILD()
{
cp -rf $sourceDir2/* po
cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=Release \
cmake -B build -S . -DCMAKE_BUILD_TYPE=Release \
$cmakeDirArgs \
-DCMAKE_INSTALL_BINDIR=$appsDir \
-DCMAKE_C_COMPILER="gcc" \
@@ -112,7 +114,9 @@ BUILD()
-DCMAKE_CXX_FLAGS="-fno-stack-protector" \
-DWITH_WEBENGINE=OFF \
-DWITH_OXYGEN_ICONS=OFF \
-DEMBED_DATA=ON
-DEMBED_DATA=ON \
-Wno-dev
make -C build $jobArgs
}