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>
This commit is contained in:
parent
4f63cc29f6
commit
f3348e1482
1 changed files with 39 additions and 0 deletions
39
Formula/transmission.rb
Normal file
39
Formula/transmission.rb
Normal file
|
@ -0,0 +1,39 @@
|
|||
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
|
Loading…
Reference in a new issue