7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
17 lines
451 B
Ruby
17 lines
451 B
Ruby
require 'formula'
|
|
|
|
class Librasterlite <Formula
|
|
url 'http://www.gaia-gis.it/spatialite/librasterlite-1.0.tar.gz'
|
|
homepage 'http://www.gaia-gis.it/spatialite/'
|
|
md5 'c6f7864ac6101ff63f8aec4b02603b46'
|
|
|
|
depends_on "libgeotiff"
|
|
depends_on "libspatialite"
|
|
|
|
def install
|
|
ENV.libpng
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|