Package Details: simbuto 0.1.21-1

Git Clone URL: https://aur.archlinux.org/simbuto.git (read-only, click to copy)
Package Base: simbuto
Description: simple budgeting tool
Upstream URL: https://gitlab.com/nobodyinperson/simbuto
Licenses: GPL3
Submitter: nobodyinperson
Maintainer: nobodyinperson
Last Packager: nobodyinperson
Votes: 1
Popularity: 0.000000
First Submitted: 2020-01-12 20:02 (UTC)
Last Updated: 2020-06-03 06:12 (UTC)

Latest Comments

nobodyinperson commented on 2020-03-21 22:02 (UTC)

As a quick fix for build issues due to missing pandoc (e.g. on ARM architectures), the PKGBUILD can be adjusted like this:

diff --git a/PKGBUILD b/PKGBUILD
index e7fc4e1..62bd4a2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,7 +9,7 @@ url="https://gitlab.com/nobodyinperson/simbuto"
 license=('GPL3')
 groups=()
 depends=('gtk3' 'python-gobject' 'r-optparse')
-makedepends=('pandoc')
+makedepends=()
 checkdepends=()
 optdepends=()
 provides=()
@@ -37,6 +37,8 @@ prepare() {

 build() {
    cd "$pkgname-v$pkgver"
+   sed -i '/pandoc\|(man\/Makefile)/d' configure.ac
+   sed -i 's/\(SUBDIRS.*\)man\s*\(.*\)/\1\2/' Makefile.am
     autoreconf --install
    ./configure --prefix=/usr --sysconfdir=/etc
    make