a6def4a08a
Version bump to 0.46 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
449 B
Ruby
13 lines
449 B
Ruby
require 'formula'
|
|
|
|
class Libical <Formula
|
|
url 'http://downloads.sourceforge.net/project/freeassociation/libical/libical-0.46/libical-0.46.tar.gz'
|
|
homepage 'http://www.citadel.org/doku.php/documentation:featured_projects:libical'
|
|
md5 '9c08f88945bfd5d0791d102e4aa4125c'
|
|
|
|
def install
|
|
system "./bootstrap"
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|