a1acab2bd2
Closes Homebrew/homebrew#8751. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
15 lines
427 B
Ruby
15 lines
427 B
Ruby
require 'formula'
|
|
|
|
class Yuicompressor < Formula
|
|
url 'http://yui.zenfs.com/releases/yuicompressor/yuicompressor-2.4.7.zip'
|
|
homepage 'http://yuilibrary.com/projects/yuicompressor'
|
|
md5 '885657c68ed617737e730b4c2ce52dda'
|
|
|
|
def install
|
|
libexec.install "build/yuicompressor-2.4.7.jar"
|
|
(bin+'yuicompressor').write <<-EOS.undent
|
|
#!/bin/sh
|
|
java -jar "#{libexec}/yuicompressor-2.4.7.jar" $@
|
|
EOS
|
|
end
|
|
end
|