aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-10-05 13:55:16 -0700
committerAdam Vandenberg2013-10-05 13:55:16 -0700
commit7435f18880e639cedd32fd40cfe94f88440d5ca0 (patch)
tree3fce6986b26df11b6a47f4fec50826248b4d4b92 /Library/Formula
parent2152fd174e3b269f359d385bc4137c4f1e57aa22 (diff)
downloadhomebrew-7435f18880e639cedd32fd40cfe94f88440d5ca0.tar.bz2
Redact libunique
This project has been deprecated by its owners, who suggest using the GtkApplication class provided in GTK+ 3.0. Closes #23056.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libunique.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/Library/Formula/libunique.rb b/Library/Formula/libunique.rb
deleted file mode 100644
index 62a666508..000000000
--- a/Library/Formula/libunique.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-require 'formula'
-
-class Libunique < Formula
- homepage 'http://live.gnome.org/LibUnique'
- url 'http://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+3'
- depends_on :x11
-
- def install
- 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
-end