homebrew-core/Formula/finatra.rb
Christopher Coco b78e7dfa79 finatra: update checksum
Due to Finatra history changes the SHA1 of the Finatra 1.5.3 release
archive has changed. This change is to update to the new correct SHA1
for the binary.

Fixes Homebrew/homebrew#39787.
Closes Homebrew/homebrew#39887.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-18 20:55:54 -04:00

16 lines
325 B
Ruby

require "formula"
class Finatra < Formula
homepage "http://finatra.info/"
url "https://github.com/twitter/finatra/archive/1.5.3.tar.gz"
sha1 "7f2fcf458badf42c5401587b7be19a4f5c5b439c"
def install
libexec.install Dir["*"]
bin.install_symlink libexec/"finatra"
end
test do
system "finatra"
end
end