diff options
| author | nibbles 2bits | 2012-07-15 20:48:32 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-08-22 09:10:11 -0700 |
| commit | bfc402a375138e5ccbccabe4ee0d089f14a0f607 (patch) | |
| tree | 4b751955abc3e194e3b79550e8845d6c911996e0 /Library/Formula/libunique.rb | |
| parent | 33a0498e33ee8decff9feb5d1e46662fc0b0cc0d (diff) | |
| download | homebrew-bfc402a375138e5ccbccabe4ee0d089f14a0f607.tar.bz2 | |
libunique 3.0.2
Upgrade libunique to version 3.0.2.
Add a flag to disable gtk docs.
Change the gtk dep to gtk+3.
Tested with clang and llvm from XCode-4.3.3.
Closes #13421.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/libunique.rb')
| -rw-r--r-- | Library/Formula/libunique.rb | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/Library/Formula/libunique.rb b/Library/Formula/libunique.rb index b08cfcae8..6fc30e319 100644 --- a/Library/Formula/libunique.rb +++ b/Library/Formula/libunique.rb @@ -2,21 +2,23 @@ require 'formula' class Libunique < Formula homepage 'http://live.gnome.org/LibUnique' - url 'ftp://ftp.gnome.org/pub/GNOME/sources/libunique/1.1/libunique-1.1.6.tar.bz2' - sha256 'e5c8041cef8e33c55732f06a292381cb345db946cf792a4ae18aa5c66cdd4fbb' - head 'git://git.gnome.org/unique' + url 'ftp://ftp.gnome.org/pub/GNOME/sources/libunique/3.0/libunique-3.0.2.tar.bz2' + sha256 '50269a87c7aabf1e25f01b3bbb280133138ffd7b6776289894c614a4b6ca968d' depends_on 'pkg-config' => :build depends_on 'dbus-glib' - depends_on 'gtk+' + depends_on 'gtk+3' + depends_on :x11 def install - args = ["--disable-debug", - "--disable-dependency-tracking", - "--enable-introspection=no", - "--enable-maintainer-flags=no", - "--prefix=#{prefix}"] - + args = %W[ + --disable-debug + --disable-dependency-tracking + --disable-introspection + --disable-maintainer-flags + --disable-gtk-doc-html + --prefix=#{prefix} + ] system "./configure", *args system "make install" end |
