homebrew-core/Formula/libtorrent-rasterbar.rb
Brett Koonce 5b8b77cd92 libtorrent-rasterbar 0.16.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-01 19:33:35 -08:00

16 lines
471 B
Ruby

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