I've encountered the same build problem, I've made tweaks to build() and check() in PKGBUILD so that it builds on my computer.
build() {
cd "$srcdir/$_sourcename"
./autogen.sh
./configure --prefix=/usr --with-gui=qt5
make DESTDIR="$srcdir/$_sourcename" install
}
check() {
cd "$srcdir/$_sourcename"
make check
}
Pinned Comments
Tahvok commented on 2018-05-30 09:00 (UTC)
Take a notice, this is now a split package - meaning it will build both the gui and the daemon - you need to install only one of them (unless you really need both).