blob: 83408998ecbcebca3918200b95de37a361a5777f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  | 
require 'formula'
class Libidl < Formula
  homepage 'http://download.gnome.org/sources/libIDL/0.8/'
  url 'http://download.gnome.org/sources/libIDL/0.8/libIDL-0.8.14.tar.bz2'
  sha1 'abedf091bef0c7e65162111baf068dcb739ffcd3'
  option :universal
  depends_on 'pkg-config' => :build
  depends_on 'gettext'
  depends_on 'glib'
  def install
    ENV.universal_binary if build.universal?
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |