blob: f5878e52b3466ba50f9843a5a9de36faef6b60a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Mktorrent < Formula
  url      'http://downloads.sourceforge.net/mktorrent/mktorrent-1.0.tar.gz'
  homepage 'http://mktorrent.sourceforge.net/'
  sha1 'f9b1bbf9d19911b6c8994dbec6208530c7d929ad'
  def install
    system "make USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1"
    bin.install "mktorrent"
  end
end
  |