diff options
| author | nibbles 2bits | 2012-06-14 02:36:46 -0700 |
|---|---|---|
| committer | Jack Nagel | 2012-06-14 17:13:44 -0500 |
| commit | 83c4f1df93a8d52482e292d2d403b9d6a66acb91 (patch) | |
| tree | 07edf4d6517b02010565802430c8ea408cbe73ab /Library | |
| parent | 276e551d954e11019bd5df531e0cbeaeb42503bc (diff) | |
| download | homebrew-83c4f1df93a8d52482e292d2d403b9d6a66acb91.tar.bz2 | |
kelbt 0.15 final release
Upgrade kelbt to the final release of this software.
The developer is starting a new project called colm.
See the homepage for more details.
Add a `fails_with :clang` block due to undeclared identifiers.
Not going to bother reporting it. Works well with llvm on Lion
from XCode-4.3.3.
Closes #12838.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/kelbt.rb | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/Library/Formula/kelbt.rb b/Library/Formula/kelbt.rb index 0dad20e2c..bbe4f3703 100644 --- a/Library/Formula/kelbt.rb +++ b/Library/Formula/kelbt.rb @@ -1,12 +1,20 @@ require 'formula' class Kelbt < Formula - url 'http://www.complang.org/kelbt/kelbt-0.14.tar.gz' homepage 'http://www.complang.org/kelbt/' - md5 '6eeaaa79e665389d7953361d10815fb5' + url 'http://www.complang.org/kelbt/kelbt-0.15.tar.gz' + sha1 '93b8e839b85ebd4ba99a8b8a0565a73d8e8bcaa1' + + # kelbt-0.15 is the final release. So this error will be unreported, though + # it works well using llvm or gcc. The dev's new project similar to this + # is called colm. See the homepage for more info. + fails_with :clang do + build 318 + cause 'Undeclared identifiers' + end def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" + system './configure', "--prefix=#{prefix}" system "make install" end end |
