Bumped minisatip version to 2.0.88, Requiring build rewrite for CMake #1

Merged
brammp merged 4 commits from dev into main 2026-07-21 00:46:58 +02:00
2 changed files with 6 additions and 5 deletions
Showing only changes of commit aa1cea2a72 - Show all commits
+1 -1
View File
@@ -16,7 +16,7 @@
{
"label": "Clean Package",
"type": "shell",
"command": " cd ${input:Package}; abuild clean; abuild cleancache",
"command": " cd ${input:Package}; abuild clean; abuild cleancache; abuild cleanpkg",
"problemMatcher": [],
"group": {
"kind": "build",
+5 -4
View File
@@ -18,10 +18,11 @@ _builddir="$srcdir"/$pkgname-$pkgver
build() {
cd "${_builddir}"
#sed -i 's/bash/ash/' ./tools/determine_version.sh
#./configure --enable-static
cmake -B build
#if [ "$CARCH" = "armhf" ] || [ "$CARCH" = "armv7" ]; then sed -i 's/CXX23=.*/CXX23=0/' src/Makefile ;fi
if [ "$CARCH" = "armhf" ] || [ "$CARCH" = "armv7" ]; then
cmake -B build . -DCXX23=OFF -DSTATIC=ON
else
cmake -B build . -DSTATIC=ON
fi
cd build
sed -i "s/\~/${pkgver}-r${pkgrel}/" config.h
ninja