homebrew-core/Formula/akka.rb
Kashif Rasul 6dfe0430cf akka: Update to 2.1.0
ps. merry xmas!

Closes Homebrew/homebrew#16738.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-12-25 10:24:43 -08:00

20 lines
463 B
Ruby

require 'formula'
class Akka < Formula
homepage 'http://akka.io/'
url 'http://download.akka.io/downloads/akka-2.1.0.tgz'
sha1 'fd93792e94a2d2c981d62a70f45f6d6da0f74d47'
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