homebrew-core/Formula/transmission.rb
Jarkko Oranen f3348e1482 transmission 2.33 (CLI utilities)
Does not build mac or GTK user interfaces; GTK makes no sense
for most people and anyone who wants the Mac UI can just go
download the .app from the website.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-08-30 20:44:18 -05:00

39 lines
1.2 KiB
Ruby

require 'formula'
class Transmission < Formula
url 'http://download.transmissionbt.com/files/transmission-2.33.tar.bz2'
homepage 'http://www.transmissionbt.com/'
md5 '082217a65713ac879410c622cbe6eb26'
# Actually depends on libcurl but doesn't find it without pkg-config
depends_on 'pkg-config' => :build
depends_on 'libevent'
depends_on 'intltool' => :optional
depends_on 'gettext' => :optional # need gettext only if intltool is also installed
def install
args = ["--disable-dependency-tracking",
"--disable-gtk", "--disable-mac",
"--prefix=#{prefix}"]
args << "--disable-nls" unless Formula.factory("intltool").installed? and
Formula.factory("gettext").installed?
system "./configure", *args
system "make" # build fails for some reason if make isn't done first
system "make install"
end
def caveats; <<-EOS.undent
This formula only installs the Transmission command line utilities:
transmission-cli
transmission-create
transmission-daemon
transmission-edit
transmission-remote
transmission-show
Transmission.app can be downloaded from Transmission's website.
EOS
end
end