aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lolcode.rb
blob: abd1add25ac5929c2ced33d94303bc61002d1da2 (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'formula'

class Lolcode <Formula
  homepage 'http://www.icanhaslolcode.org/'
  head 'git://github.com/justinmeza/lolcode.git'

  def install
    system "make"
    bin.install 'lolcode'
  end
end