aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libidl.rb
blob: a8638fc80a7a4272370cbac132ba30873f859765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Libidl <Formula
  url 'http://ftp.acc.umu.se/pub/gnome/sources/libIDL/0.8/libIDL-0.8.14.tar.bz2'
  homepage 'http://ftp.acc.umu.se/pub/gnome/sources/libIDL/0.8/'
  md5 'bb8e10a218fac793a52d404d14adedcb'

  depends_on 'pkg-config'
  depends_on 'gettext'
  depends_on 'glib'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
    system "make install"
  end
end