homebrew-core/Formula/libtorrent-rasterbar.rb
Stefan cfb8e757fc libtorrent-rasterbar 0.16.8
Closes Homebrew/homebrew#17966.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-20 08:15:33 -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.8.tar.gz'
sha1 '483689787cb64e7cf4abefda4058b912ec406709'
depends_on 'boost'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end