aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2013-09-21 18:33:42 -0500
committerJack Nagel2013-09-21 19:29:52 -0500
commitea7bfff06e369845672ecf2c79ab142d8003a3cc (patch)
treea3b8d7f31563a94268960c6c0e1fbfcba3d87152
parent38bca587f398e113f4d402f0b9278d9c49441ded (diff)
downloadhomebrew-ea7bfff06e369845672ecf2c79ab142d8003a3cc.tar.bz2
gdal: use spec deps
-rw-r--r--Library/Formula/gdal.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/gdal.rb b/Library/Formula/gdal.rb
index a234312c3..9f5f47a23 100644
--- a/Library/Formula/gdal.rb
+++ b/Library/Formula/gdal.rb
@@ -5,7 +5,10 @@ class Gdal < Formula
url 'http://download.osgeo.org/gdal/1.10.1/gdal-1.10.1.tar.gz'
sha1 'b4df76e2c0854625d2bedce70cc1eaf4205594ae'
- head 'https://svn.osgeo.org/gdal/trunk/gdal'
+ head do
+ url 'https://svn.osgeo.org/gdal/trunk/gdal'
+ depends_on 'doxygen' => :build
+ end
option 'complete', 'Use additional Homebrew libraries to provide more drivers.'
option 'with-postgres', 'Specify PostgreSQL as a dependency.'
@@ -14,9 +17,6 @@ class Gdal < Formula
option 'enable-armadillo', 'Build with Armadillo accelerated TPS transforms.'
option 'enable-unsupported', "Allow configure to drag in any library it can find. Invoke this at your own risk."
- # For creating up to date man pages.
- depends_on 'doxygen' => :build if build.head?
-
depends_on :python => :recommended
depends_on :libpng
depends_on 'jpeg'