aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJørgen P. Tjernø2010-01-21 22:07:29 -0800
committerAdam Vandenberg2010-05-13 09:57:34 -0700
commitcee0b88be187361bc7d11b41ebf3e6aa5372750e (patch)
tree4949a61a64b483b3f9ee947d0a29211327cee489 /Library/Formula
parent1e75da9ca89ef34eabcf1d2419c3dd60fb9b77de (diff)
downloadhomebrew-cee0b88be187361bc7d11b41ebf3e6aa5372750e.tar.bz2
libglade 2.6.4
Libglade is a library that performs a similar job to the C source output routines in the GLADE user interface builder. Whereas GLADE's output routines create C source code that must be compiled, libglade builds the interface from an XML file (GLADE's save format) at runtime. This can allow modifying the user interface without recompiling. Signed-off-by: Adam Vandenberg <flangy@gmail.com> * gtk+ dep pulls in glib and atk * Remove unused configure switch
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libglade.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/libglade.rb b/Library/Formula/libglade.rb
new file mode 100644
index 000000000..a6e48f66a
--- /dev/null
+++ b/Library/Formula/libglade.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Libglade <Formula
+ url 'http://ftp.gnome.org/pub/GNOME/sources/libglade/2.6/libglade-2.6.4.tar.gz'
+ homepage 'http://glade.gnome.org'
+ sha256 'c41d189b68457976069073e48d6c14c183075d8b1d8077cb6dfb8b7c5097add3'
+
+ depends_on 'libxml2'
+ depends_on 'gtk+'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
+ system "make install"
+ end
+end