Create spice-protocol.rb

This commit is contained in:
toddpfaff 2015-05-13 00:21:07 -04:00
parent 4bb335ad7a
commit 1a05d207d9

14
spice-protocol.rb Normal file
View file

@ -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