aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/yuicompressor.rb
blob: bedffc569f81259128627a407f4e1a0e0e44d590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Yuicompressor < Formula
  homepage 'http://yuilibrary.com/projects/yuicompressor'
  url 'https://github.com/yui/yuicompressor/releases/download/v2.4.8/yuicompressor-2.4.8.zip'
  sha1 '178e265570c8161e8074c7ca19896abb05e76c1f'

  def install
    libexec.install "yuicompressor-#{version}.jar"
    bin.write_jar_script libexec/"yuicompressor-#{version}.jar", "yuicompressor"
  end
end