homebrew-core/Formula/lolcode.rb
Brett Koonce 5a22df0223 lolcode: fix homepage
Closes Homebrew/homebrew#22620.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-17 19:29:23 -07:00

18 lines
409 B
Ruby

require 'formula'
class Lolcode < Formula
homepage 'http://lolcode.org'
url 'https://github.com/justinmeza/lci/archive/v0.11.1.tar.gz'
sha1 '9949a2480a738ac566dbe66142dd351f778fb8b7'
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