2014-11-03 01:25:15 +00:00
|
|
|
require "formula"
|
2012-05-03 22:16:33 +00:00
|
|
|
|
|
|
|
class Akka < Formula
|
2014-11-03 01:25:15 +00:00
|
|
|
homepage "http://akka.io/"
|
|
|
|
url "http://downloads.typesafe.com/akka/akka-2.3.5.tgz"
|
|
|
|
sha256 "8400209225805774274334bd88c32e2e20fe8598bcec6e61bcb4b66198b2319f"
|
2012-05-03 22:16:33 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
# Remove Windows files
|
|
|
|
rm "bin/akka.bat"
|
|
|
|
|
|
|
|
# Translate akka script
|
|
|
|
inreplace "bin/akka" do |s|
|
|
|
|
s.gsub! /^declare AKKA_HOME=.*$/, "declare AKKA_HOME=#{libexec}"
|
|
|
|
end
|
|
|
|
|
|
|
|
libexec.install Dir["*"]
|
|
|
|
bin.install_symlink libexec/"bin/akka"
|
|
|
|
end
|
|
|
|
end
|