mudlet, revbump, bump boost and python requirements (#13024)

This commit is contained in:
Schrijvers Luc
2025-10-05 14:00:45 +02:00
committed by GitHub
parent e34a6162bd
commit 46423209c6

View File

@@ -18,7 +18,7 @@ COPYRIGHT="2008-2013 Heiko Koehn
2017 Tom Scheper 2017 Tom Scheper
2017 Fae" 2017 Fae"
LICENSE="GNU GPL v2" LICENSE="GNU GPL v2"
REVISION="3" REVISION="4"
SOURCE_URI="https://github.com/Mudlet/Mudlet/archive/Mudlet-$portVersion.tar.gz" SOURCE_URI="https://github.com/Mudlet/Mudlet/archive/Mudlet-$portVersion.tar.gz"
CHECKSUM_SHA256="109d542d789426f589925702a06c1793609fc10952ce5620519b02299be21c9b" CHECKSUM_SHA256="109d542d789426f589925702a06c1793609fc10952ce5620519b02299be21c9b"
SOURCE_DIR="Mudlet-Mudlet-$portVersion" SOURCE_DIR="Mudlet-Mudlet-$portVersion"
@@ -36,7 +36,7 @@ SECONDARY_ARCHITECTURES="x86"
PROVIDES=" PROVIDES="
mudlet$secondaryArchSuffix = $portVersion mudlet$secondaryArchSuffix = $portVersion
app:mudlet$secondaryArchSuffix = $portVersion app:Mudlet = $portVersion
lib:libmudlet$secondaryArchSuffix = $portVersion lib:libmudlet$secondaryArchSuffix = $portVersion
" "
REQUIRES=" REQUIRES="
@@ -65,7 +65,7 @@ REQUIRES="
BUILD_REQUIRES=" BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel haiku${secondaryArchSuffix}_devel
devel:libboost_graph$secondaryArchSuffix >= 1.70.0 devel:libboost_graph$secondaryArchSuffix >= 1.88.0
devel:libGL$secondaryArchSuffix devel:libGL$secondaryArchSuffix
devel:libGLU$secondaryArchSuffix devel:libGLU$secondaryArchSuffix
devel:libhunspell_1.7$secondaryArchSuffix devel:libhunspell_1.7$secondaryArchSuffix
@@ -97,7 +97,7 @@ BUILD_PREREQUIRES="
cmd:lrelease$secondaryArchSuffix >= 5 cmd:lrelease$secondaryArchSuffix >= 5
cmd:make cmd:make
cmd:pkg_config$secondaryArchSuffix cmd:pkg_config$secondaryArchSuffix
cmd:python2 cmd:python3.10
cmd:sed cmd:sed
cmd:strip cmd:strip
" "
@@ -116,8 +116,10 @@ BUILD()
export HUNSPELL_DIR="$portPackageLinksDir/hunspell${secondaryArchSuffix}_devel/develop/" export HUNSPELL_DIR="$portPackageLinksDir/hunspell${secondaryArchSuffix}_devel/develop/"
cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=RelWithDebInfo \ cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=$appsDir/Mudlet \
-DBUILD_SHARED_LIBS=ON \ -DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_PREFIX=$appsDir/Mudlet -DCMAKE_POLICY_VERSION_MINIMUM=3.5 \
-Wno-dev
make -C build $jobArgs make -C build $jobArgs
} }