Package Details: kreport-git 2.99.3.r1119.a284bf7-1

Git Clone URL: https://aur.archlinux.org/kreport-git.git (read-only, click to copy)
Package Base: kreport-git
Description: A framework for creation and generation of reports in multiple formats. (GIT version)
Upstream URL: https://www.kde.org/applications/graphics/kreport
Licenses: GPL, LGPL, FDL
Conflicts: kreport
Provides: kreport
Submitter: sl1pkn07
Maintainer: None
Last Packager: sl1pkn07
Votes: 1
Popularity: 0.000000
First Submitted: 2015-06-25 13:42 (UTC)
Last Updated: 2016-09-26 14:34 (UTC)

Latest Comments

SmokeyD commented on 2016-09-26 14:18 (UTC)

I had to add the -DPYTHON_EXECUTABLE:FILEPATH=/usr/bin/python2 option to cmake to get it to compile, when both python2 and python 3 interpreters are present. For me the build() function in PKGBUILD looks like this: 37 build() { 38 cd build 39 40 cmake ../kreport \ 41 -DPYTHON_EXECUTABLE:FILEPATH=/usr/bin/python2 \ 42 -DCMAKE_BUILD_TYPE=Release \ 43 -DCMAKE_INSTALL_PREFIX=/usr \ 44 -DKDE_INSTALL_LIBDIR=lib \ 45 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \ 46 -DBUILD_TESTING=OFF 47 make 48 }