blob: 6286de5e47166f970bb04e610df1c8361eae6c87 (
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
  | 
require 'formula'
class Shapelib < Formula
  homepage 'http://shapelib.maptools.org/'
  url 'http://download.osgeo.org/shapelib/shapelib-1.2.10.tar.gz'
  sha1 '436b09b6a90f403e4568460d67560d5730725651'
  def install
    dylib = lib+"libshp.#{version}.dylib"
    inreplace 'Makefile' do |s|
      s.change_make_var! "CFLAGS", ENV.cflags
    end
    system "make all"
    system "make shptree.o"
    lib.mkpath
    system ENV.cc, *%W(-dynamiclib -all_load
                       -install_name #{dylib}
                       -compatibility_version #{version}
                       -o #{dylib}
                       shpopen.o shptree.o dbfopen.o)
    include.install 'shapefil.h'
    cd lib do
      ln_s "libshp.#{version}.dylib", "libshp.#{version.to_s.split('.').first}.dylib"
      ln_s "libshp.#{version}.dylib", "libshp.dylib"
    end
  end
end
  |