13c38f954e
Closes Homebrew/homebrew#19886. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
20 lines
463 B
Ruby
20 lines
463 B
Ruby
require 'formula'
|
|
|
|
class Akka < Formula
|
|
homepage 'http://akka.io/'
|
|
url 'http://download.akka.io/downloads/akka-2.1.4.tgz'
|
|
sha1 '8ab4b3a49988882ed77beec72603579f0f6b49ee'
|
|
|
|
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
|