blob: 4b358653bf0330d52aebaffde81c7064ceaf938b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
require 'formula'
class Libgtop < Formula
homepage 'http://library.gnome.org/devel/libgtop/stable/'
url 'http://ftp.gnome.org/pub/gnome/sources/libgtop/2.28/libgtop-2.28.5.tar.xz'
sha1 '7104a7546252e3fb26d162e9b34e1f7df42236d1'
bottle do
revision 1
sha1 "b6762fe85c8fdbf57c6530261a49e78c37b1a9ee" => :yosemite
sha1 "91085d6ace20d9ad4f79a9bf296a10027fd3a8d2" => :mavericks
sha1 "52f47e23108f5530f53dacfcaf01e3e78cb05d3f" => :mountain_lion
end
depends_on 'pkg-config' => :build
depends_on 'intltool' => :build
depends_on 'gettext'
depends_on 'glib'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--without-x"
system "make install"
end
end
|