blob: 4e347ac79e9d4715732f2fff2827a36fd7ff2696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  | 
require 'formula'
class Lolcode < Formula
  homepage 'http://www.icanhaslolcode.org/'
  url 'https://github.com/justinmeza/lci/tarball/v0.9.2'
  md5 'bb757687aabea302351cbbce77e01c26'
  head 'https://github.com/justinmeza/lolcode.git'
  def install
    inreplace 'Makefile' do |s|
      s.change_make_var! "prefix", prefix
    end
    system "make"
    # v0.9.2 should use 'make install'.
    # Later versions can just copy the 'lolcode' bin.
    if build.head?
      bin.install 'lolcode'
    else
      bin.mkpath
      system "make install"
    end
  end
end
  |