librasterlite: Use Homebrew SQLite

SpatiaLite requires Homebrew's version of SQLite so make sure that is the
version RasterLite links against.
This commit is contained in:
Charlie Sharpsteen 2012-05-07 11:05:53 -07:00
parent fbb210bbb9
commit 4150c79730

View file

@ -10,6 +10,8 @@ class Librasterlite < Formula
def install
ENV.x11 # For image format libraries
# Ensure Homebrew SQLite libraries are found before the system SQLite
ENV.append 'LDFLAGS', "-L#{HOMEBREW_PREFIX}/lib"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"