2010-04-04 19:17:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Lolcode < Formula
|
2010-04-04 19:17:49 +00:00
|
|
|
homepage 'http://www.icanhaslolcode.org/'
|
2012-09-04 19:03:37 +00:00
|
|
|
url 'https://github.com/justinmeza/lci/tarball/v0.9.3'
|
|
|
|
sha1 '212c5a4f414063a1b994a9a4446dc8da69577dd4'
|
2010-04-04 19:17:49 +00:00
|
|
|
|
2012-08-23 22:22:07 +00:00
|
|
|
head 'https://github.com/justinmeza/lolcode.git'
|
|
|
|
|
2012-09-04 19:03:37 +00:00
|
|
|
depends_on 'cmake' => :build
|
2010-10-26 21:39:16 +00:00
|
|
|
|
2012-09-04 19:03:37 +00:00
|
|
|
def install
|
|
|
|
system "cmake ."
|
2010-04-04 19:17:49 +00:00
|
|
|
system "make"
|
2012-09-04 19:03:37 +00:00
|
|
|
# Don't use `make install` for this one file
|
|
|
|
bin.install 'lci'
|
2010-04-04 19:17:49 +00:00
|
|
|
end
|
|
|
|
end
|