2010-10-07 18:16:44 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gcal < Formula
|
2010-10-07 18:16:44 +00:00
|
|
|
homepage 'http://www.gnu.org/software/gcal/'
|
2012-05-17 17:37:35 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/gcal/gcal-3.6.2.tar.xz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/gcal/gcal-3.6.2.tar.xz'
|
|
|
|
sha1 '45dfa00e362d9c4ab8978a7a2f2ab898b156a3c4'
|
|
|
|
|
|
|
|
depends_on 'xz' => :build
|
2010-10-07 18:16:44 +00:00
|
|
|
|
|
|
|
def install
|
2012-05-17 17:37:35 +00:00
|
|
|
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking'
|
2010-10-07 18:16:44 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|