aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2010-02-15 22:08:35 -0800
committerAdam Vandenberg2010-02-16 17:19:18 -0800
commita821be9f0edd356de3c52cb4633c10966dc06986 (patch)
tree97745ca7f9dca3e41f82464b811928abd2232fe1
parent02710c4a6a61d3de8f41c49793001e9d335b8a9f (diff)
downloadhomebrew-a821be9f0edd356de3c52cb4633c10966dc06986.tar.bz2
libIDL 0.8.13
-rw-r--r--Library/Formula/libidl.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/libidl.rb b/Library/Formula/libidl.rb
new file mode 100644
index 000000000..e81b2e031
--- /dev/null
+++ b/Library/Formula/libidl.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Libidl <Formula
+ url 'http://ftp.acc.umu.se/pub/gnome/sources/libIDL/0.8/libIDL-0.8.13.tar.bz2'
+ # The real homepage wasn't responding when this brew was created:
+ # homepage 'http://andrewtv.org/libIDL/'
+ homepage 'http://ftp.acc.umu.se/pub/gnome/sources/libIDL/0.8/'
+ md5 'b43b289a859eb38a710f70622c46e571'
+
+ depends_on 'pkg-config'
+ depends_on 'gettext'
+ depends_on 'glib'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end