aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ioke.rb
blob: 58da1fe12c1c9cafe2d49083dd26ce6dd4f9defe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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