diff options
| author | Adam Vandenberg | 2014-07-20 14:33:12 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-07-20 14:33:12 -0700 |
| commit | 331b68959ed5015173486e01639e1a7cea042688 (patch) | |
| tree | 34bc0cc368e9f27c1201df4113c5178db54996ab /Library/Formula | |
| parent | 34a766bb31266e59855eb2ce5a817af761062c4f (diff) | |
| download | homebrew-331b68959ed5015173486e01639e1a7cea042688.tar.bz2 | |
activemq: remove used skip_clean
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/activemq.rb | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/Library/Formula/activemq.rb b/Library/Formula/activemq.rb index 3113c1f9a..9b50e65b6 100644 --- a/Library/Formula/activemq.rb +++ b/Library/Formula/activemq.rb @@ -1,19 +1,17 @@ -require 'formula' +require "formula" class Activemq < Formula - homepage 'http://activemq.apache.org/' - url 'http://www.apache.org/dyn/closer.cgi?path=/activemq/5.10.0/apache-activemq-5.10.0-bin.tar.gz' - sha1 'e08179216b4c7cbcd2024716c62c51434481fabf' - - skip_clean 'libexec/webapps/admin/WEB-INF/jsp' + homepage "http://activemq.apache.org/" + url "http://www.apache.org/dyn/closer.cgi?path=/activemq/5.10.0/apache-activemq-5.10.0-bin.tar.gz" + sha1 "e08179216b4c7cbcd2024716c62c51434481fabf" def install - rm_rf Dir['bin/linux-x86-*'] + rm_rf Dir["bin/linux-x86-*"] prefix.install_metafiles - libexec.install Dir['*'] + libexec.install Dir["*"] - bin.write_exec_script libexec/'bin/activemq' - bin.write_exec_script libexec/'bin/activemq-admin' + bin.write_exec_script libexec/"bin/activemq" + bin.write_exec_script libexec/"bin/activemq-admin" end end |
