2010-01-31 21:36:02 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Calcurse < Formula
|
2011-11-07 07:43:43 +00:00
|
|
|
homepage 'http://calcurse.org/'
|
2014-09-26 19:16:52 +00:00
|
|
|
url 'http://calcurse.org/files/calcurse-3.2.1.tar.gz'
|
|
|
|
sha1 'ae5b128074c294be7651e025b7e0fdfc15259085'
|
2010-01-31 21:36:02 +00:00
|
|
|
|
|
|
|
depends_on 'gettext'
|
|
|
|
|
|
|
|
def install
|
2011-11-07 07:43:43 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2010-01-31 21:36:02 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|