Package Details: moneymanagerex-git 1.9.3-1

Git Clone URL: https://aur.archlinux.org/moneymanagerex-git.git (read-only, click to copy)
Package Base: moneymanagerex-git
Description: MoneyManagerEx is an easy-to-use personal finance suite. This package will always point to the newest commit.
Upstream URL: http://www.moneymanagerex.org/
Licenses: GPL-2.0-or-later
Conflicts: moneymanagerex
Provides: moneymanagerex
Replaces: mmex
Submitter: MartinX3
Maintainer: MartinX3
Last Packager: MartinX3
Votes: 1
Popularity: 0.000000
First Submitted: 2022-07-21 14:44 (UTC)
Last Updated: 2026-08-31 18:07 (UTC)

Dependencies (16)

Required by (0)

Sources (2)

Latest Comments

MartinX3 commented on 2026-08-09 10:01 (UTC) (edited on 2026-08-09 10:02 (UTC) by MartinX3)

@christian8246q Thank you for the hint.

I prepared the workaround needed because MMEX wants wxWidgets 3.3.

But can't push it because of the AUR lockdown.

Please ping me when I don't react after the release of the lockdown.

christian8246q commented on 2026-07-27 17:56 (UTC)

It looks like it's not possible to build this package currently, because the upstream repository expects wxwidgets in version 3.3 and up, whereas in the arch repository you only get version 3.2. This leads to a build error when building src/CMakeFiles/mmex.dir/util/mmImage.cpp.

Someone in the GitHub issues applied a patch to this file which actually solved the build, but didn't test the codepath: https://github.com/moneymanagerex/moneymanagerex/issues/8363

Currently it works quite well, but I'm not 100% sure if I came across this code path yet.

MartinX3 commented on 2023-04-22 09:26 (UTC)

@cysp74 thank you very much! :)

cysp74 commented on 2023-04-21 11:02 (UTC)

Hey,

I made some changes in PKGBUILD in order to avoid create doubling of output package, since calling cmake with "-DCMAKE_BUILD_TYPE=Release" and "--target package" forces to create another PKGBUILD and a additional package.


diff --git a/PKGBUILD b/PKGBUILD
index 66b97df..85cee7d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: Martin Dünkelmann <nc-duenkekl3 at netcologne.de>

 pkgname=moneymanagerex-git
-pkgver=v1.5.15.r749.gf2de9b5a9
+pkgver=1.6.3.r1461.g355d4cb42
 pkgrel=1
 pkgdesc="MoneyManagerEx is an easy-to-use personal finance suite. This package will always point to the newest commit."
 arch=('x86_64')
@@ -33,10 +33,9 @@ build() {

   # Disable all warnings when building, then configure CMake
   export CXXFLAGS=-w
-  
-  cmake -DCMAKE_BUILD_TYPE=Release -DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config .
-  
-  cmake --build . --target package
+
+  cmake -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_PREFIX='/usr' -Wno-dev -DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config .
+  cmake --build .
 }

 package() {