blob: fc441e7f039ce3eb27f74b17c974315a0bc81fbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Yuicompressor < Formula
url 'http://yuilibrary.com/downloads/yuicompressor/yuicompressor-2.4.2.zip'
homepage 'http://yuilibrary.com/projects/yuicompressor'
md5 '2a526a9aedfe2affceed1e1c3f9c0579'
def install
libexec.install "build/yuicompressor-2.4.2.jar"
(bin+'yuicompressor').write <<-EOS.undent
#!/bin/sh
java -jar "#{libexec}/yuicompressor-2.4.2.jar" $@
EOS
end
end
|