homebrew-core/Formula/doublecpp.rb

20 lines
743 B
Ruby

class Doublecpp < Formula
desc "Double dispatch in C++"
homepage "http://doublecpp.sourceforge.net/"
url "https://downloads.sourceforge.net/doublecpp/doublecpp-0.6.3.tar.gz"
sha256 "232f8bf0d73795558f746c2e77f6d7cb54e1066cbc3ea7698c4fba80983423af"
bottle do
cellar :any_skip_relocation
sha256 "208aa405fce2959b47f705ab8ba9104e8eadec3e8e709bddd3117ef7b074bedf" => :el_capitan
sha256 "54f99b448e61043c5152441c309ea849b1d04fbde12ab67e023aee074dc206ee" => :yosemite
sha256 "cfd2231b9a8ecb53216905392c8e1aaa6841ea912f18dc6059d9ebfa1fa5f118" => :mavericks
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end