f3afe2571a
Closes Homebrew/homebrew#27253. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
20 lines
464 B
Ruby
20 lines
464 B
Ruby
require 'formula'
|
|
|
|
class Akka < Formula
|
|
homepage 'http://akka.io/'
|
|
url 'http://downloads.typesafe.com/akka/akka-2.3.0.tgz'
|
|
sha1 'f2128ce170bb4f61b0e981f5611b85207938e460'
|
|
|
|
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
|