aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mktorrent.rb
blob: ba26a671af4c7e4dc7ab2d9aaaaf0300c343041a (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/'
  md5      '0da00209da96a0dc39efbb6eb5b4d8ff'

  def install
    system "make USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1"
    bin.install "mktorrent"
  end
end