1577af0372
This reverts commit 90575346225fd0c16475ad74ee53b37b62715f0c. Closes Homebrew/homebrew#28026.
19 lines
552 B
Ruby
19 lines
552 B
Ruby
require 'formula'
|
|
|
|
class GtkMurrineEngine < Formula
|
|
homepage 'https://github.com/GNOME/murrine'
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/murrine/0.98/murrine-0.98.2.tar.xz'
|
|
sha1 'ddaca56b6e10736838572014ae9d20b814242615'
|
|
|
|
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
|
|
end
|