Package Details: cloudcompare-git 2.13.1.r327.g5170325e3-1

Git Clone URL: https://aur.archlinux.org/cloudcompare-git.git (read-only, click to copy)
Package Base: cloudcompare-git
Description: A 3D point cloud (and triangular mesh) processing software
Upstream URL: https://www.cloudcompare.org
Keywords: 3d mesh poincloud scan
Licenses: GPL2
Conflicts: cloudcompare
Provides: cloudcompare
Submitter: dbrgn
Maintainer: bartus
Last Packager: bartus
Votes: 12
Popularity: 0.000000
First Submitted: 2015-08-20 19:52 (UTC)
Last Updated: 2026-04-12 08:10 (UTC)

Pinned Comments

bartus commented on 2019-04-10 11:41 (UTC) (edited on 2026-04-29 21:19 (UTC) by bartus)

Please report issues and patches to @bartoszek/AUR-cloudcompare-git (github.com)

Latest Comments

« First ‹ Previous 1 2 3 4

lantald commented on 2016-06-01 13:53 (UTC)

Please update the package. I get an error: opt/bin/CloudCompare: error while loading shared libraries: libQCC_IO_LIB.so: cannot open shared object file: No such file or directory

johannesWinter commented on 2016-04-13 12:17 (UTC)

Hi. I just updated the PKGBUILD to version 2.6.2. Here is the diff: --- cloudcompare-git/PKGBUILD 2015-08-20 21:55:03.000000000 +0200 +++ cloudcompare-git-updated/PKGBUILD 2016-04-13 14:11:04.237399892 +0200 @@ -2,13 +2,13 @@ # Maintainer: Danilo Bargen <aur at dbrgn dot ch> pkgname=cloudcompare-git -pkgver=2.5.0.r830.g3cd1c04 +pkgver=2.6.2.r516.g0431708 pkgrel=1 pkgdesc="A 3D point cloud (and triangular mesh) processing software" arch=('i686' 'x86_64') url="http://www.danielgm.net/cc/" license=('GPL2') -depends=('qt4' 'glu' 'mesa') +depends=('qt5-base') makedepends=('git' 'cmake' 'pcl') optdepends=('pcl') source=("git+https://github.com/cloudcompare/trunk") @@ -29,8 +29,8 @@ cmake .. \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/opt \ - -DBUILD_QPCL_PLUGIN_DOCUMENTATION=ON \ - -DINSTALL_QPCL_PLUGIN=ON \ + -DBUILD_QPCL_PLUGIN_DOCUMENTATION=OFF \ + -DINSTALL_QPCL_PLUGIN=OFF \ -DINSTALL_QSRA_PLUGIN=OFF \ -DINSTALL_QPOISSON_RECON_PLUGIN=OFF \ -DINSTALL_QHPR_PLUGIN=OFF \ @@ -60,13 +60,10 @@ cd "$srcdir/trunk/build" make DESTDIR="$pkgdir/" install - mkdir -p "${pkgdir}/usr/lib" - mv "${pkgdir}/opt/lib/"* "${pkgdir}/usr/lib" - rm -r "${pkgdir}/opt/lib/" - mkdir -p "${pkgdir}/usr/bin" + mkdir -p "${pkgdir}/usr/lib/cloudcompare" cd "$pkgdir/usr/bin" - ln -s "../../opt/ccViewer/ccViewer" - ln -s "../../opt/CloudCompare/CloudCompare" - + cp -s ../../opt/bin/* . + cd "$pkgdir/usr/lib/cloudcompare" + cp -s ../../../opt/lib/cloudcompare/* . }