aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/liblwgeom.rb
blob: 9ac585700bfde6ba136ada29c8043b5dee5cbc80 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
require 'formula'

class Liblwgeom < Formula
  homepage 'http://postgis.net'

  stable do
    url "http://download.osgeo.org/postgis/source/postgis-2.1.1.tar.gz"
    sha1 "eaff009fb22b8824f89e5aa581e8b900c5d8f65b"

      # Strip all the PostgreSQL functions from PostGIS configure.ac, to allow
      # building liblwgeom.dylib without needing PostgreSQL
      # NOTE: this will need to be maintained per postgis version
    patch do
      url "https://gist.githubusercontent.com/dakcarto/7458788/raw/8df39204eef5a1e5671828ded7f377ad0f61d4e1/postgis-config_strip-pgsql.diff"
      sha1 "3d93c9ede79439f1c683a604f9d906f5c788c690"
    end
  end

  bottle do
    cellar :any
    sha1 "222c662b18e0f8682a545fd924b6f5446951a9c2" => :mavericks
    sha1 "918ba2b824b202f0fb9eff14f3f4dae1c3b2b5d7" => :mountain_lion
    sha1 "8c047d21560626ddd88e76923a0b38a69b204ee5" => :lion
  end

  head do
    url 'http://svn.osgeo.org/postgis/trunk/'
    depends_on 'postgresql' => :build # don't maintain patches for HEAD
  end

  keg_only "Conflicts with PostGIS, which also installs liblwgeom.dylib"

  depends_on "autoconf" => :build
  depends_on "automake" => :build
  depends_on "libtool" => :build
  depends_on 'gpp' => :build

  depends_on 'proj'
  depends_on 'geos'
  depends_on 'json-c'

  def install
    # See postgis.rb for comments about these settings
    ENV.deparallelize

    args = [
      "--disable-dependency-tracking",
      "--disable-nls",

      "--with-projdir=#{HOMEBREW_PREFIX}",
      "--with-jsondir=#{Formula["json-c"].opt_prefix}",

      # Disable extraneous support
      "--without-libiconv-prefix",
      "--without-libintl-prefix",
      "--without-raster", # this ensures gdal is not required
      "--without-topology"
    ]

    if build.head?
      args << "--with-pgconfig=#{Formula["postgresql"].opt_prefix.realpath}/bin/pg_config"
    end

    system './autogen.sh'
    system './configure', *args

    mkdir 'stage'
    cd 'liblwgeom' do
      system 'make', 'install', "DESTDIR=#{buildpath}/stage"
    end

    # NOTE: lib.install Dir['stage/**/lib/*'] fails (symlink is not resolved)
    prefix.install Dir["stage/**/lib"]
    include.install Dir["stage/**/include/*"]
  end
end