activemq: remove used skip_clean
This commit is contained in:
parent
70c1c9f4d5
commit
b6d9f2d22b
1 changed files with 8 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue