* update pdal to 2.7.2-1

This commit is contained in:
Alexander Baldeck 2024-07-27 18:13:30 +02:00
parent 4012ba16e7
commit acbcec88df
3 changed files with 34 additions and 8 deletions

23
pdal/.SRCINFO Normal file
View File

@ -0,0 +1,23 @@
pkgbase = pdal
pkgdesc = A C++ library for translating and manipulating point cloud data
pkgver = 2.7.2
pkgrel = 1
url = http://www.pdal.io
arch = x86_64
license = BSD
makedepends = cmake
makedepends = python
makedepends = python-numpy
makedepends = ninja
makedepends = postgresql-libs
depends = gdal
depends = libgeotiff
depends = jsoncpp
optdepends = python-numpy: for the Python plugin
optdepends = sqlite: for the sqlite plugin
optdepends = postgresql-libs: for the postgresql plugin
provides = pdal
source = https://github.com/PDAL/PDAL/releases/download/2.7.2/PDAL-2.7.2-src.tar.bz2
sha512sums = 81e4d4b136e292f5a2e4145f730e00375a26a6a2aa52af679bea6d9d371b55c92641475ea332fc8301fe35d237415b70ea311da3fc1bc4ff69013a7448f66896
pkgname = pdal

3
pdal/.nvchecker.toml Normal file
View File

@ -0,0 +1,3 @@
[pdal]
source = "git"
git = "https://github.com/PDAL/PDAL.git"

View File

@ -2,8 +2,8 @@
# Maintainer: Sven-Hendrik Haase <svenstaro@archlinux.org>
# Contributor: SaultDon <sault.don gmail>
pkgname=pdal
pkgver=2.7.1
pkgrel=2
pkgver=2.7.2
pkgrel=1
pkgdesc="A C++ library for translating and manipulating point cloud data"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url="http://www.pdal.io"
@ -15,7 +15,7 @@ optdepends=('python-numpy: for the Python plugin'
'postgresql-libs: for the postgresql plugin')
provides=('pdal')
source=("https://github.com/PDAL/PDAL/releases/download/${pkgver}/PDAL-${pkgver}-src.tar.bz2")
sha512sums=('f76236f671ae3a0d43afa0c985772e75491e664b7d83563a95618e4f579aeb4ce70ffb3f4935508d4cb74984822d3c5aed4f9a7f8abed453c6fb5a1386f8d163')
sha512sums=('81e4d4b136e292f5a2e4145f730e00375a26a6a2aa52af679bea6d9d371b55c92641475ea332fc8301fe35d237415b70ea311da3fc1bc4ff69013a7448f66896')
build() {
cd "PDAL-$pkgver-src/"
@ -28,11 +28,11 @@ build() {
esac
cmake \
-Bbuild \
-GNinja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_PLUGIN_PGPOINTCLOUD=ON \
-DWITH_COMPLETION=ON
-Bbuild \
-GNinja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_PLUGIN_PGPOINTCLOUD=ON \
-DWITH_COMPLETION=ON
ninja -C build
}