homebrew-core/Formula/ioke.rb
Adam Vandenberg 95d9785ff5 Clean ups to several formulas, including:
* Removing silly concatenation
* Removing .bat files before installing
* Removing silly quoting
* Fixing download URLs
* Removing explicit versions
2010-04-17 18:24:02 -07:00

16 lines
No EOL
345 B
Ruby

require 'formula'
class Ioke <Formula
url 'http://ioke.org/dist/ioke-P-ikj-0.4.0.tar.gz'
homepage 'http://ioke.org/'
md5 '936fac215d14809ff5f4bd1fd8262ce0'
def install
inreplace 'bin/ioke' do |s|
s.change_make_var! 'IOKE_HOME', HOMEBREW_PREFIX
end
rm_f Dir["bin/*.bat"]
prefix.install %w[bin lib share]
end
end