homebrew-core/Formula/libical.rb
Alexis Hildebrandt a6def4a08a Update Formula: libical
Version bump to 0.46

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-09 12:42:06 -07:00

13 lines
449 B
Ruby

require 'formula'
class Libical <Formula
url 'http://downloads.sourceforge.net/project/freeassociation/libical/libical-0.46/libical-0.46.tar.gz'
homepage 'http://www.citadel.org/doku.php/documentation:featured_projects:libical'
md5 '9c08f88945bfd5d0791d102e4aa4125c'
def install
system "./bootstrap"
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end