diff options
| author | Adam Vandenberg | 2012-07-26 07:03:07 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-07-26 07:03:07 -0700 | 
| commit | 86f796c71079b621ccfcf3e9f54f415a91a62c7a (patch) | |
| tree | d3c70e4cfa927ac2e1c492be689d63f0dfc7103e | |
| parent | 2b75eeaa5b004c9c09a53338ad905acfc78e14bb (diff) | |
| download | homebrew-86f796c71079b621ccfcf3e9f54f415a91a62c7a.tar.bz2 | |
lablgtk: add x11 dep
| -rw-r--r-- | Library/Formula/lablgtk.rb | 10 | 
1 files changed, 7 insertions, 3 deletions
diff --git a/Library/Formula/lablgtk.rb b/Library/Formula/lablgtk.rb index 99327562a..4d67ccf68 100644 --- a/Library/Formula/lablgtk.rb +++ b/Library/Formula/lablgtk.rb @@ -1,15 +1,19 @@  require 'formula'  class Lablgtk < Formula -  url 'http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/dist/lablgtk-2.14.2.tar.gz'    homepage 'http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgtk.html' -  md5 'bad77680a72dab8b915cae99d1ec9b1f' +  url 'http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/dist/lablgtk-2.14.2.tar.gz' +  sha1 'fd184418ccbc542825748ca63fba75138d2ea561' +  depends_on :x11    depends_on 'objective-caml'    depends_on 'gtk+'    def install -    system "./configure", "--bindir=#{bin}", "--libdir=#{lib}", "--mandir=#{man}", "--with-libdir=#{lib}/ocaml" +    system "./configure", "--bindir=#{bin}", +                          "--libdir=#{lib}", +                          "--mandir=#{man}", +                          "--with-libdir=#{lib}/ocaml"      ENV.j1      system "make world"      system "make install"  | 
