Package Details: moneymanagerex-git 1.6.4.r1630.g3296c175e-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
Conflicts: moneymanagerex
Provides: moneymanagerex
Replaces: mmex
Submitter: MartinX3
Maintainer: MartinX3
Last Packager: MartinX3
Votes: 1
Popularity: 0.000004
First Submitted: 2022-07-21 14:44 (UTC)
Last Updated: 2023-12-31 14:47 (UTC)

Dependencies (16)

Required by (0)

Sources (1)

Latest Comments

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() {