794cc013a4
Upgrade getxbook to version 0.9. Remove the patch for clang. The issue is fixed in 0.9. Tested with llvm and clang. Closes Homebrew/homebrew#11929. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
11 lines
297 B
Ruby
11 lines
297 B
Ruby
require 'formula'
|
|
|
|
class Getxbook < Formula
|
|
homepage 'http://njw.me.uk/software/getxbook/'
|
|
url 'http://njw.me.uk/software/getxbook/getxbook-0.9.tar.bz2'
|
|
sha1 '833b37fd121b24090ce59424886571be4bedf6c2'
|
|
|
|
def install
|
|
system "make", "CC=#{ENV.cc}", "PREFIX=#{prefix}", "install"
|
|
end
|
|
end
|