https://bugs.kde.org/show_bug.cgi?id=411214

--- Comment #21 from maderios <leoutat...@gmx.fr> ---
Git master, sure. I compiled it on last August 24
Archlinux system
Imagemagick installed version is 7.0.8.62, it may be different from yours?
Here is my Arch Aur modified script to clone git and build Digikam:
####################################################
pkgname=digikam-git
pkgver=r42728.bf87ed54b8
pkgrel=1
pkgdesc='Digital photo management application for KDE'
arch=('i686' 'x86_64')
license=('GPL')
url="http://www.digikam.org/";
depends=(liblqr qtav lensfun knotifyconfig kfilemetadata opencv threadweaver
qt5-xmlpatterns libgphoto2 imagemagick)
makedepends=('git' 'extra-cmake-modules-git' 'eigen' 'doxygen' 'boost'
'mariadb' 'kdoctools')
optdepends=('hugin: panorama tool' 'kimageformats')
conflicts=('digikam')
provides=('digikam')
install=digikam-git.install
source=('digikam::git+git://anongit.kde.org/digikam')
md5sums=('SKIP')
groups=('digikamsc-git')

pkgver() {
  cd "${srcdir}/digikam"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short
HEAD)"
}

prepare() {
if [[ -d "${srcdir}/build" ]]; then
      msg "Cleaning the previous build directory..."
      rm -rf "${srcdir}/build"
  fi
  mkdir "${srcdir}/build"
}

build() {
  cd "${srcdir}/build"
  cmake "${srcdir}/digikam" -DCMAKE_BUILD_TYPE=Release \
                -DCMAKE_INSTALL_PREFIX=/usr \
                -DLIB_INSTALL_DIR=lib \
                -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
                -DBUILD_TESTING=OFF \
                -DENABLE_AKONADICONTACTSUPPORT=OFF \
                -DENABLE_KFILEMETADATASUPPORT=ON \
                -DENABLE_MYSQLSUPPORT=ON \
                -DENABLE_INTERNALMYSQL=ON \
                -DENABLE_MEDIAPLAYER=ON \
                -DENABLE_APPSTYLES=ON \
                -DENABLE_QWEBENGINE=OFF \
                -DOpenGL_GL_PREFERENCE=GLVND
  make
}

package() {
  cd "${srcdir}/build"
  make DESTDIR="${pkgdir}" install
}

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to