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/'
|
2013-01-01 14:58:04 +00:00
|
|
|
url 'https://github.com/justinmeza/lci/tarball/v0.10.3'
|
|
|
|
sha1 'c3e4b2b0b83a5e257c2e0e3b613c83c3cae4d084'
|
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
|