require 'formula' class Lastfmlib < Formula url 'http://lastfmlib.googlecode.com/files/lastfmlib-0.4.0.tar.gz' homepage 'http://code.google.com/p/lastfmlib/' sha1 'b9e15e4eb42a9ccd9b3c5373054b0bd51a406fdd' depends_on 'pkg-config' => :build fails_with :clang do build 318 cause <<-EOS.undent lastfmlib/utils/stringoperations.h:62:16: error: no viable conversion from '__string_type' (aka 'basic_string, std::allocator >') to 'std::string' (aka 'basic_string') EOS end def install system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" end end