blob: 99327562ac29f173bf5a41b317234b393a81fade (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
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'
  depends_on 'objective-caml'
  depends_on 'gtk+'
  def install
    system "./configure", "--bindir=#{bin}", "--libdir=#{lib}", "--mandir=#{man}", "--with-libdir=#{lib}/ocaml"
    ENV.j1
    system "make world"
    system "make install"
  end
end
  |