Added formula for libKML

libKML is Google's libarary for reading and writing KML and KMZ files.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Charlie Sharpsteen 2010-08-11 21:58:14 -07:00 committed by Adam Vandenberg
parent 2c4af62130
commit 2ad96d4188
1 changed files with 12 additions and 0 deletions

12
Formula/libkml.rb Normal file
View File

@ -0,0 +1,12 @@
require 'formula'
class Libkml <Formula
url 'http://libkml.googlecode.com/files/libkml-1.2.0.tar.gz'
homepage 'http://code.google.com/p/libkml/'
md5 '25d534437f971bf55a945608e39fea79'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end