diff options
| author | Adam Vandenberg | 2013-11-12 20:52:49 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-12 21:42:49 -0800 |
| commit | f85b986a2e936b69ddb558c18d770c69ed077cf6 (patch) | |
| tree | 48b5301ec55f3fe00828bfd9b55d786126ca3391 /Library | |
| parent | bd5fd985f806a76c9b80e45dc9d747759109b01d (diff) | |
| download | homebrew-f85b986a2e936b69ddb558c18d770c69ed077cf6.tar.bz2 | |
lci/lolcode conflict
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/lci.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/lolcode.rb | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Library/Formula/lci.rb b/Library/Formula/lci.rb index 68011e496..5ecfbe682 100644 --- a/Library/Formula/lci.rb +++ b/Library/Formula/lci.rb @@ -5,6 +5,8 @@ class Lci < Formula url 'http://downloads.sourceforge.net/project/lci/lci/0.6/lci-0.6.tar.gz' sha1 '0b03f4c2d47a3e217f760e371ec60bed8b477b02' + conflicts_with 'lolcode', :because => 'both install `lci` binaries' + def install system "./configure", "--prefix=#{prefix}" system "make install" diff --git a/Library/Formula/lolcode.rb b/Library/Formula/lolcode.rb index 4c016c70f..64825344c 100644 --- a/Library/Formula/lolcode.rb +++ b/Library/Formula/lolcode.rb @@ -2,13 +2,14 @@ require 'formula' class Lolcode < Formula homepage 'http://lolcode.org' + head 'https://github.com/justinmeza/lolcode.git' 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 + conflicts_with 'lci', :because => 'both install `lci` binaries' + def install system "cmake ." system "make" |
