blob: 9e4042dde9c58c4bd25d8d9028097a8dd34d9314 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
|