2014-06-01 00:30:33 +00:00
|
|
|
require "formula"
|
2010-01-30 11:41:03 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libical < Formula
|
2014-06-01 00:30:33 +00:00
|
|
|
homepage "http://www.citadel.org/doku.php/documentation:featured_projects:libical"
|
|
|
|
url "https://downloads.sourceforge.net/project/freeassociation/libical/libical-1.0/libical-1.0.tar.gz"
|
|
|
|
sha1 "25c75f6f947edb6347404a958b1444cceeb9f117"
|
2012-09-04 18:47:04 +00:00
|
|
|
|
2014-07-03 19:34:33 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "53a9904cb6430f736cf154bacfa425e09a6b1d73" => :mavericks
|
|
|
|
sha1 "17d644dc8d704576d66807be82a82ff18e19feb6" => :mountain_lion
|
|
|
|
sha1 "60b0f803e80ad08fda001af2f54b0cbcb257f935" => :lion
|
|
|
|
end
|
|
|
|
|
2014-06-01 00:30:33 +00:00
|
|
|
depends_on "autoconf" => :build
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
2010-01-30 11:41:03 +00:00
|
|
|
|
|
|
|
def install
|
2010-09-09 19:02:21 +00:00
|
|
|
system "./bootstrap"
|
2014-06-01 00:30:33 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2010-01-30 11:41:03 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|