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

class Htmlcompressor <Formula
  url 'http://htmlcompressor.googlecode.com/files/htmlcompressor-0.9.9.jar'
  homepage 'http://code.google.com/p/htmlcompressor/'
  md5 'cbfb5ec29d6f2c50b7aea28de8bc1227'

  def install
    libexec.install "htmlcompressor-0.9.9.jar"
    (bin+'htmlcompressor').write <<-EOS.undent
      #!/bin/sh
      java -jar "#{libexec}/htmlcompressor-0.9.9.jar" $@
    EOS
  end
end