aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libical.rb
blob: 0a60f94e7c04c83ac36854191a9f18d53ccbd6a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "formula"

class Libical < Formula
  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"

  depends_on "autoconf" => :build
  depends_on "automake" => :build
  depends_on "libtool" => :build

  def install
    system "./bootstrap"
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end