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
|
|
|
url 'http://calcurse.org/files/calcurse-2.9.2.tar.gz'
|
|
|
|
homepage 'http://calcurse.org/'
|
|
|
|
md5 '5cb7d9c9edddc551fc62c9c5733591c5'
|
2010-01-31 21:36:02 +00:00
|
|
|
|
|
|
|
depends_on 'gettext'
|
|
|
|
|
|
|
|
def install
|
2011-11-07 07:43:43 +00:00
|
|
|
# need this flag otherwise there is a build error.
|
|
|
|
ENV.append 'CFLAGS', "-fnested-functions"
|
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2010-01-31 21:36:02 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|