15 lines
526 B
Ruby
15 lines
526 B
Ruby
class SpiceProtocol < Formula
|
|
desc "Headers for SPICE protocol"
|
|
homepage "https://www.spice-space.org/"
|
|
url "https://www.spice-space.org/download/releases/spice-protocol-0.12.12.tar.bz2"
|
|
sha256 "17abdc2743b5d44b0f4423b61c44aafe9f2078c27218aeea78c2d02a5c409d03"
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|