blob: d44fa27211d5552b085f58a5b5c027dcdf96a56b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Libtorrent < Formula
url 'http://libtorrent.rakshasa.no/downloads/libtorrent-0.12.6.tar.gz'
homepage 'http://libtorrent.rakshasa.no/'
md5 '037499ed708aaf72988cee60e5a8d96b'
depends_on 'pkg-config' => :build
depends_on 'libsigc++'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--with-kqueue", "--enable-ipv6"
system "make"
system "make install"
end
end
|