195973e84b
Signed-off-by: Adam Vandenberg <flangy@gmail.com> * lulz Signed-off-by: Adam Vandenberg <flangy@gmail.com>
11 lines
204 B
Ruby
11 lines
204 B
Ruby
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
|