Package Details: cloudcompare-git 2.13.r3.g36cc2b5c9-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: http://www.danielgm.net/cc/
Keywords: 3d mesh poincloud scan
Licenses: GPL2
Conflicts: cloudcompare
Provides: cloudcompare
Submitter: dbrgn
Maintainer: bartus (AchmadFathoni)
Last Packager: bartus
Votes: 12
Popularity: 0.000000
First Submitted: 2015-08-20 19:52 (UTC)
Last Updated: 2024-03-06 16:29 (UTC)

Required by (0)

Sources (17)

Pinned Comments

bartus commented on 2022-03-14 10:33 (UTC)

Sorry lads, I'm at the Polish Ukraine border helping allocate refugees. Expect no update until this hell is over, wish us luck. Have no time nor access to my rig and AUR keys to test/post updates. If you have a patch, ping me on email - I'll add you as co-maintainer. Posted with my old script - https://github.com/bartoszek/aur-post

bartus commented on 2019-04-10 11:41 (UTC)

Please report issues and patches to 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/* . }