blob: 2a369c271f29a167c41356326f93cb04c15df9d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  | 
require 'formula'
class Mldonkey < Formula
  url 'http://downloads.sourceforge.net/project/mldonkey/mldonkey/3.1.0/mldonkey-3.1.0.tar.bz2'
  homepage 'http://mldonkey.sourceforge.net/Main_Page'
  md5 '072726d158ba1e936c554be341e7ceff'
  depends_on 'objective-caml'
  if ARGV.include? "--with-x"
    depends_on 'librsvg'
    depends_on 'lablgtk'
  end
  def options
    [["--with-x", "Build mldonkey with X11 support"]]
  end
  def install
    args = ["--prefix=#{prefix}"]
    if ARGV.include? "--with-x"
      ENV.x11
      args << "--enable-gui=newgui2"
    end
    system "./configure", *args
    system "make install"
  end
end
  |