homebrew-core/Formula/hebcal.rb
Dj Padzensky 46d44d299c hebcal 3.17 (new formula)
Closes Homebrew/homebrew#39444.

Signed-off-by: Xu Cheng <xucheng@me.com>
2015-05-08 15:16:01 +08:00

17 lines
461 B
Ruby

class Hebcal < Formula
homepage "https://github.com/hebcal/hebcal"
url "https://github.com/hebcal/hebcal/archive/v3.17.tar.gz"
sha256 "57ea943749030ac5f0c29c421645b4816ebe3063feca334a62bbf9d5067f38bd"
depends_on "autoconf" => :build
depends_on "automake" => :build
def install
system "./configure", "--prefix=#{prefix}", "ACLOCAL=aclocal", "AUTOMAKE=automake"
system "make", "install"
end
test do
system "#{bin}/hebcal"
end
end