homebrew-core/Formula/libical.rb

14 lines
450 B
Ruby
Raw Normal View History

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