homebrew-core/Formula/libical.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

16 lines
503 B
Ruby

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