diff options
| author | Pete Gadomski | 2013-08-01 11:53:47 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2013-08-02 06:56:38 -0700 |
| commit | 52f73061efbce312d87d50c1a5e2a5698920b731 (patch) | |
| tree | e077daaa4475ba4f7f114470689f0dd5b6ab9c4b /Library/Formula/liblas.rb | |
| parent | 4b51e119a85d377100b3ca49227e91e7abf0beaf (diff) | |
| download | homebrew-52f73061efbce312d87d50c1a5e2a5698920b731.tar.bz2 | |
Build liblas with GDAL and GEOTIFF
Fixes issue where GDAL and libgeotiff are required as dependencies,
but the build formula didn't actually build liblas with GDAL support.
Closes #21590.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/liblas.rb')
| -rw-r--r-- | Library/Formula/liblas.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/liblas.rb b/Library/Formula/liblas.rb index a314a7dde..b9e2de763 100644 --- a/Library/Formula/liblas.rb +++ b/Library/Formula/liblas.rb @@ -19,7 +19,7 @@ class Liblas < Formula # http://liblas.org/compilation.html ENV['Boost_INCLUDE_DIR'] = "#{HOMEBREW_PREFIX}/include" ENV['Boost_LIBRARY_DIRS'] = "#{HOMEBREW_PREFIX}/lib" - system "cmake", "..", *std_cmake_args + system "cmake", "..", "-DWITH_GEOTIFF=ON", "-DWITH_GDAL=ON", *std_cmake_args system "make" system "make test" if build.include? 'with-test' system "make install" |
