homebrew-core/Formula/jslint4java.rb

16 lines
394 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Jslint4java < Formula
2012-02-11 23:34:35 +00:00
url "http://jslint4java.googlecode.com/files/jslint4java-2.0.2-dist.zip"
homepage 'http://code.google.com/p/jslint4java/'
2012-02-11 23:34:35 +00:00
md5 'e9a10b894bda3c03ac4c7184b98ae09b'
def install
2012-02-11 23:34:35 +00:00
libexec.install Dir['*']
(bin+'jslint4java').write <<-EOF.undent
#!/bin/bash
2012-02-11 23:34:35 +00:00
java -jar "#{libexec}/jslint4java-2.0.2.jar" "$@"
EOF
end
end