homebrew-core/Formula/transmission.rb
Brett Koonce 7f81d58f23 transmission 2.61
Closes Homebrew/homebrew#13758.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-29 21:37:18 -07:00

33 lines
1 KiB
Ruby

require 'formula'
class Transmission < Formula
homepage 'http://www.transmissionbt.com/'
url 'http://download.transmissionbt.com/files/transmission-2.61.tar.bz2'
sha1 '7df170ecee6e62766859dca6ae0cf4e89c1ea99f'
depends_on 'pkg-config' => :build # So it will find system libcurl
depends_on 'libevent'
depends_on 'intltool' => :optional
depends_on 'gettext' => :optional # need gettext if intltool is used
def install
args = ["--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-mac",
"--without-gtk"]
args << "--disable-nls" unless Formula.factory("intltool").installed? and
Formula.factory("gettext").installed?
system "./configure", *args
system "make" # Make and install in one step fails
system "make install"
end
def caveats; <<-EOS.undent
This formula only installs the command line utilities.
Transmission.app can be downloaded from Transmission's website:
http://www.transmissionbt.com
EOS
end
end