homebrew-core/Formula/lolcode.rb

19 lines
421 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Lolcode < Formula
homepage 'http://www.icanhaslolcode.org/'
url 'https://github.com/justinmeza/lci/archive/v0.11.1.tar.gz'
sha1 '9949a2480a738ac566dbe66142dd351f778fb8b7'
2012-08-23 22:22:07 +00:00
head 'https://github.com/justinmeza/lolcode.git'
depends_on 'cmake' => :build
def install
system "cmake ."
system "make"
# Don't use `make install` for this one file
bin.install 'lci'
end
end