abee1acf73
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
26 lines
591 B
Ruby
26 lines
591 B
Ruby
require 'formula'
|
|
|
|
class Jasmin < Formula
|
|
homepage 'http://jasmin.sourceforge.net/'
|
|
url 'http://downloads.sourceforge.net/project/jasmin/jasmin/jasmin-2.4/jasmin-2.4.zip'
|
|
sha1 'c66400680144e0da4efdcf4a084e42e2355189fe'
|
|
|
|
def script; <<-EOS.undent
|
|
#!/bin/sh
|
|
java -jar "#{libexec}/jasmin.jar" "$@"
|
|
EOS
|
|
end
|
|
|
|
def install
|
|
# Remove Windows scripts
|
|
rm_rf Dir['*.bat']
|
|
|
|
libexec.install Dir['*.jar']
|
|
prefix.install %w[Readme.txt license-ant.txt license-jasmin.txt]
|
|
(bin+"jasmin").write script
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/jasmin -version"
|
|
end
|
|
end
|