blob: 3195012ebe855147cd086ab6b92a8c9c8d7c2001 (
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.4.jar'
homepage 'http://code.google.com/p/htmlcompressor/'
md5 '6b6a68a048ce52b4fd567e1beeb2cfb6'
def install
libexec.install "htmlcompressor-0.9.4.jar"
(bin+'htmlcompressor').write <<-EOS.undent
#!/bin/sh
java -jar "#{libexec}/htmlcompressor-0.9.4.jar" $@
EOS
end
end
|