diff --git a/spice-protocol.rb b/spice-protocol.rb new file mode 100644 index 0000000..8099a6f --- /dev/null +++ b/spice-protocol.rb @@ -0,0 +1,14 @@ +class SpiceProtocol < Formula + homepage "http://www.spice-space.org/" + url "http://www.spice-space.org/download/releases/spice-protocol-0.12.7.tar.bz2" + version "0.12.7" + sha256 "96c6cb73361816ed19bfd8536f65d4547da35709aa00af1380e650c1174916c2" + + def install + system "./configure", "--disable-debug", + "--disable-dependency-tracking", + "--disable-silent-rules", + "--prefix=#{prefix}" + system "make", "install" + end +end