homebrew-core/Formula/libtorrent-rasterbar.rb

17 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