homebrew-core/Formula/gtk-murrine-engine.rb
Tom Schoonjans 8cb3dedf26 gtk-murrine-engine went quartz
revision bump
audit --strict compliance
2015-06-17 15:58:56 +01:00

24 lines
729 B
Ruby

class GtkMurrineEngine < Formula
desc "Murrine GTK+ engine"
homepage "https://github.com/GNOME/murrine"
url "https://download.gnome.org/sources/murrine/0.98/murrine-0.98.2.tar.xz"
sha256 "e9c68ae001b9130d0f9d1b311e8121a94e5c134b82553ba03971088e57d12c89"
revision 1
depends_on "intltool" => :build
depends_on "pkg-config" => :build
depends_on "gtk+"
depends_on "gettext"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-animation"
system "make", "install"
end
test do
assert (lib/"gtk-2.0/2.10.0/engines/libmurrine.so").exist?
assert (share/"gtk-engines/murrine.xml").exist?
end
end