diff options
| author | Jason Ryan Womack | 2013-09-29 01:07:07 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2013-10-07 19:41:07 -0700 |
| commit | d5423623551419e593b8995918b9645fa41da03d (patch) | |
| tree | 81f4489c98b7580703069ecb765b21023a9c7c57 /Library/Formula | |
| parent | b4ba77500333f529881376564adf189c1e3cd117 (diff) | |
| download | homebrew-d5423623551419e593b8995918b9645fa41da03d.tar.bz2 | |
Typesafe Activator 1.0.0
Closes #22921.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/typesafe-activator.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/typesafe-activator.rb b/Library/Formula/typesafe-activator.rb new file mode 100644 index 000000000..b248199f3 --- /dev/null +++ b/Library/Formula/typesafe-activator.rb @@ -0,0 +1,20 @@ +require 'formula' + +class TypesafeActivator < Formula + homepage 'http://typesafe.com/activator' + url 'http://downloads.typesafe.com/typesafe-activator/1.0.0/typesafe-activator-1.0.0.zip' + sha1 '9bbe02637e15f401fab28fcfbb038c43c17fbeba' + + def install + system "./framework/build", "publish-local" + + # remove Windows .bat files + rm Dir['*.bat'] + rm Dir["#{buildpath}/**/*.bat"] + + prefix.install_metafiles + + libexec.install Dir['*'] + bin.write_exec_script libexec/'activator' + end +end |
