summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e5e659e73192613c11b868ef978badd79da87e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Maintainer: Maciej Sieczka <msieczka at sieczka dot org>
# Contributor: Patryk Kowalczyk <patryk AT kowalczyk DOT WS>
# Contributor: Michael <mbostwick89@gmail.com>

pkgname='liblas'
pkgver='1.8.0'
pkgrel='2'
pkgdesc='A C/C++ library for reading and writing the very common LAS LiDAR format.'
arch=('i686' 'x86_64')
url='http://www.liblas.org/'
license=('BSD')
source=("http://download.osgeo.org/liblas/libLAS-${pkgver}.tar.bz2")
depends=('boost-libs>=1.38.0' 'gdal>=1.7.0' 'libgeotiff>=1.3.0' 'laszip')
makedepends=('boost>=1.38.0' 'cmake')
optdepends=('oci: Oracle Instant Client, see http://www.liblas.org/compilation.html')
md5sums=('599881281d45db4ce9adb2d75458391e')

build() {
  cd "${srcdir}/libLAS-${pkgver}"

  cmake -DWITH_GEOTIFF:BOOL=TRUE \
  -DWITH_GDAL:BOOL=TRUE \
  -DWITH_LASZIP:BOOL=TRUE \
  -DWITH_UTILITIES:BOOL=TRUE \
  -DCMAKE_INSTALL_PREFIX:PATH=/usr \
  -G "Unix Makefiles" .

  make
}

package() {
  cd "${srcdir}/libLAS-${pkgver}"
  make DESTDIR="$pkgdir" install
}