aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libtorrent-rasterbar.rb
blob: 3ea8e1f6eb87e460e6acc27dcad31410427d834b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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