aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-17 16:15:40 -0700
committerAdam Vandenberg2012-03-17 16:15:40 -0700
commit9511cbb1ac826c698eca64842238ab4b9b92a928 (patch)
treee5bc1aad4095a30f4ebf371255ba6e3c4be54451 /Library/Formula
parentc0c7ccb526330c3e399c9ed7c95acb147eeebf17 (diff)
downloadhomebrew-9511cbb1ac826c698eca64842238ab4b9b92a928.tar.bz2
libgtop 2.28.4
Add link to MacPorts bug report for patch. Closes #11014.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libgtop.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/Library/Formula/libgtop.rb b/Library/Formula/libgtop.rb
index f988d0bb5..7a09ac342 100644
--- a/Library/Formula/libgtop.rb
+++ b/Library/Formula/libgtop.rb
@@ -1,19 +1,23 @@
require 'formula'
class Libgtop < Formula
- url 'ftp://ftp.gnome.org/pub/gnome/sources/libgtop/2.28/libgtop-2.28.1.tar.gz'
homepage 'http://library.gnome.org/devel/libgtop/stable/'
- md5 'a035abf8cf7877a9950b6483aa7b96fd'
+ url 'http://ftp.gnome.org/pub/gnome/sources/libgtop/2.28/libgtop-2.28.4.tar.xz'
+ md5 'c8aee3c9bde9033303147e993aa1b932'
+ depends_on 'xz' => :build
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'glib'
depends_on 'intltool'
+ # Patch per MacPorts:
+ # https://trac.macports.org/ticket/21165
def patches; DATA; end
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end