homebrew-cask-versions/Casks/gdal-framework.rb
Lee Hanxue 1a630188a5 Create GDAL Framework 1.11 Cask
Required as dependency to install QGIS
See #5074
The complete framework package is installed because most applications that use GDAL will also need Proj, UnixImage and Numpy.
2014-06-27 16:18:21 +08:00

17 lines
808 B
Ruby

class GdalFramework < Cask
url 'http://www.kyngchaos.com/files/software/frameworks/GDAL_Complete-1.11.dmg'
homepage 'http://www.kyngchaos.com/software/frameworks'
version '1.11'
sha256 '8611b80e9e0f2a1ef87ff11429418fbf5996efc6a8041a3e096c3408dcceaf14'
install 'GDAL Complete.pkg'
install 'Numpy.pkg'
uninstall :pkgutil => [
'org.maptools.proj-framework-snow',
'org.sqlite.sqlite3b-framework-snow',
'com.kyngchaos.UnixImageIO-framework-E-lion',
'org.gdal.gdal111-framework-lion',
'net.refractions.geos-framework-snow',
'org.scipy.numpy-lion',
'org.scipy.numpy-snow'
]
end