diff options
| author | Adam Vandenberg | 2012-03-11 16:24:12 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-11 16:24:12 -0700 |
| commit | 577dc54560c53cc86ba80010f142c63e8b2af295 (patch) | |
| tree | f80ad3760bee9564597a7927449da4cef7fe9dd1 /Library | |
| parent | bdea9b8d17df272841728ecef668b521687bb5a5 (diff) | |
| download | homebrew-577dc54560c53cc86ba80010f142c63e8b2af295.tar.bz2 | |
transmission: update caveats
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/transmission.rb | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/Library/Formula/transmission.rb b/Library/Formula/transmission.rb index dc07f8798..a0c82f98e 100644 --- a/Library/Formula/transmission.rb +++ b/Library/Formula/transmission.rb @@ -5,11 +5,10 @@ class Transmission < Formula url 'http://download.transmissionbt.com/files/transmission-2.50.tar.bz2' md5 'c3611108e34fe6ebdcf93da5beb89045' - # Actually depends on libcurl but doesn't find it without pkg-config - depends_on 'pkg-config' => :build + depends_on 'pkg-config' => :build # So it will find system libcurl depends_on 'libevent' depends_on 'intltool' => :optional - depends_on 'gettext' => :optional # need gettext only if intltool is also installed + depends_on 'gettext' => :optional # need gettext if intltool is used def install args = ["--disable-dependency-tracking", @@ -21,20 +20,14 @@ class Transmission < Formula Formula.factory("gettext").installed? system "./configure", *args - system "make" # build fails for some reason if make isn't done first + system "make" # Make and install in one step fails 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. + This formula only installs the command line utilities. + Transmission.app can be downloaded from Transmission's website: + http://www.transmissionbt.com EOS end end |
