在 Arch Linux 上找不到 automoc4

在 Arch Linux 上找不到 automoc4

我试图构建 dekorator,但是

CMake Error at /usr/share/apps/cmake/modules/FindPackageHandleStandardArgs.cmake:198 (MESSAGE):
  Did not find automoc4 (Automoc4Config.cmake, install
  git://anongit.kde.org/automoc).  (missing: AUTOMOC4_EXECUTABLE)
Call Stack (most recent call first):
  /usr/share/apps/cmake/modules/FindAutomoc4.cmake:49 (find_package_handle_standard_args)
  /usr/share/apps/cmake/modules/FindKDE4Internal.cmake:423 (find_package)
  /usr/share/cmake-2.8/Modules/FindKDE4.cmake:95 (FIND_PACKAGE)
  CMakeLists.txt:4 (find_package)

但automoc4已经安装了。

有什么想法吗?

答案1

有一个开放的错误报告

cmake解决方法是在 PKGBUILD 中的命令中添加一行:

-DAutomoc4_DIR=/usr/lib/automoc4

还有一个论坛主题具有更通用的解决方案;在 shell 文件中添加一行:

export Automoc4_DIR=/usr/lib/automoc4

相关内容