homebrew-core/Formula/libtorrent-rasterbar.rb
Jack Nagel 1d8e36efc1 libtorrent-rasterbar: remove boost-jam dependency
Boost-jam (Boost-build) *can* be used to build this, but it is not used
when building with autotools.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-02-13 20:51:42 -06:00

16 lines
461 B
Ruby

require 'formula'
class LibtorrentRasterbar < Formula
homepage 'http://www.rasterbar.com/products/libtorrent/'
url 'http://libtorrent.googlecode.com/files/libtorrent-rasterbar-0.15.9.tar.gz'
md5 '87eea591f6eb5da4f3af84aa6d753bc7'
depends_on 'boost'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end