aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libtorrent-rasterbar.rb
blob: 8de920b95e623de11bc82157d7d5c54c2cfdff12 (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 'https://libtorrent.googlecode.com/files/libtorrent-rasterbar-0.16.7.tar.gz'
  sha1 '94b132a17d8f6a5345937731343398be8d31f170'

  depends_on 'boost'

  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end