2009-10-15 02:35:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libtorrent <Formula
|
2010-02-20 05:28:33 +00:00
|
|
|
url 'http://libtorrent.rakshasa.no/downloads/libtorrent-0.12.6.tar.gz'
|
2009-10-15 02:35:31 +00:00
|
|
|
homepage 'http://libtorrent.rakshasa.no/'
|
2010-02-20 05:28:33 +00:00
|
|
|
md5 '037499ed708aaf72988cee60e5a8d96b'
|
2009-10-15 02:35:31 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2009-10-15 02:35:31 +00:00
|
|
|
depends_on 'libsigc++'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|