aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/yuicompressor.rb
blob: d5d57e73ae977ba985a9c409ce2c3c943320936b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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