updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / liblas / PKGBUILD
blobe750be8a8c7f716d9ea67cf61ab132532cedbca0
1 # Maintainer: Adam Ehlers Nyholm Thomsen <adament@gmail.com>
2 pkgname=liblas
3 pkgver=1.6.1
4 pkgrel=1
5 pkgdesc="a C/C++ library for reading and writing ASPRS LAS versions 1.0, 1.1 and 1.2 data."
6 arch=('i686' 'x86_64')
7 url="http://liblas.org"
8 license=('BSD')
9 depends=('boost>=1.38.0')
10 makedepends=('cmake>=2.8.1')
11 optdepends=('gdal>=1.7.0' 'libgeotiff>=1.3.0')
12 source=("http://download.osgeo.org/$pkgname/libLAS-$pkgver.tar.gz")
13 md5sums=('2ce4f36f267c2f25bfc99c3f00e9cbd3')
15 build() {
16   cd "$srcdir/libLAS-$pkgver"
18 #  cmake -G "Unix Makefiles" -D WITH_GEOTIFF:BOOL=ON -D WITH_GDAL:BOOL=ON -D CMAKE_BUILD_TYPE:STRING=Release .
19   cmake -G "Unix Makefiles"  -D CMAKE_BUILD_TYPE:STRING=Release .
20   make || return 1
21   make DESTDIR="$pkgdir/" install
24 # vim:set ts=2 sw=2 et: