aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libical.rb
blob: e25cc1fa10d1dce87bc89ef4efa228357a5df37d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Libical <Formula
  url 'http://downloads.sourceforge.net/project/freeassociation/libical/libical-0.44/libical-0.44.tar.gz'
  homepage 'http://www.citadel.org/doku.php/documentation:featured_projects:libical'
  md5 'e0403c31e1ed82569325685f8c15959c'

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