2010-10-05 06:59:07 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Yuicompressor < Formula
|
2011-05-18 22:03:10 +00:00
|
|
|
url 'http://yui.zenfs.com/releases/yuicompressor/yuicompressor-2.4.6.zip'
|
2010-12-29 00:28:53 +00:00
|
|
|
homepage 'http://yuilibrary.com/projects/yuicompressor'
|
2011-04-27 07:52:11 +00:00
|
|
|
md5 '85670711b55124240a087e0b552304fa'
|
2010-10-05 06:59:07 +00:00
|
|
|
|
|
|
|
def install
|
2011-04-27 07:52:11 +00:00
|
|
|
libexec.install "build/yuicompressor-2.4.6.jar"
|
2010-10-05 06:59:07 +00:00
|
|
|
(bin+'yuicompressor').write <<-EOS.undent
|
|
|
|
#!/bin/sh
|
2011-04-27 07:52:11 +00:00
|
|
|
java -jar "#{libexec}/yuicompressor-2.4.6.jar" $@
|
2010-10-05 06:59:07 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|