blob: d90e55e124ce99c9c83805536bf4073d7a1461c8 (
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.10.tar.gz'
  sha1 '8b24442132e52f8765c79b20ffdea8b33bc5aa42'
  depends_on 'boost'
  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |