homebrew-core/Formula/jcal.rb

28 lines
731 B
Ruby
Raw Normal View History

require 'formula'
class Jcal < Formula
2012-02-14 05:45:51 +00:00
homepage 'http://savannah.nongnu.org/projects/jcal/'
url 'http://download.savannah.gnu.org/releases/jcal/jcal-0.4.1.tar.gz'
md5 'd4f94ee612494cd0ab0cf1f537aaa33b'
if MacOS.xcode_version >= "4.3"
# when and if the tarball provides configure, remove autogen.sh and these deps
depends_on "automake" => :build
depends_on "libtool" => :build
end
def install
system "/bin/sh autogen.sh"
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking"
system "make"
system "make install"
end
def test
system "#{bin}/jcal", "-y"
2012-02-14 05:45:51 +00:00
system "#{bin}/jdate"
end
end