Last active
October 2, 2016 11:58
-
-
Save Roman2K/025e10006f90066d725d674384a2b7eb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/m4/nls.m4 b/m4/nls.m4 | |
new file mode 100644 | |
index 0000000..7967cc2 | |
--- /dev/null | |
+++ b/m4/nls.m4 | |
@@ -0,0 +1,31 @@ | |
+# nls.m4 serial 3 (gettext-0.15) | |
+dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc. | |
+dnl This file is free software; the Free Software Foundation | |
+dnl gives unlimited permission to copy and/or distribute it, | |
+dnl with or without modifications, as long as this notice is preserved. | |
+dnl | |
+dnl This file can can be used in projects which are not available under | |
+dnl the GNU General Public License or the GNU Library General Public | |
+dnl License but which still want to provide support for the GNU gettext | |
+dnl functionality. | |
+dnl Please note that the actual code of the GNU gettext library is covered | |
+dnl by the GNU Library General Public License, and the rest of the GNU | |
+dnl gettext package package is covered by the GNU General Public License. | |
+dnl They are *not* in the public domain. | |
+ | |
+dnl Authors: | |
+dnl Ulrich Drepper <[email protected]>, 1995-2000. | |
+dnl Bruno Haible <[email protected]>, 2000-2003. | |
+ | |
+AC_PREREQ(2.50) | |
+ | |
+AC_DEFUN([AM_NLS], | |
+[ | |
+ AC_MSG_CHECKING([whether NLS is requested]) | |
+ dnl Default is enabled NLS | |
+ AC_ARG_ENABLE(nls, | |
+ [ --disable-nls do not use Native Language Support], | |
+ USE_NLS=$enableval, USE_NLS=yes) | |
+ AC_MSG_RESULT($USE_NLS) | |
+ AC_SUBST(USE_NLS) | |
+]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Transmission < Formula | |
desc "Lightweight BitTorrent client" | |
homepage "https://www.transmissionbt.com/" | |
url "https://github.com/transmission/transmission-releases/raw/094777d/transmission-2.92.tar.xz" | |
sha256 "3a8d045c306ad9acb7bf81126939b9594553a388482efa0ec1bfb67b22acd35f" | |
bottle do | |
sha256 "0886b0d5825c557540222b50bd7ce30feb2bd48f6d14db5ec7b15ac2451088d6" => :sierra | |
sha256 "68af47554f408d92d04cbf86239a3d973cf7b4e9f0d254e127f5ead36074987a" => :el_capitan | |
sha256 "2071f4bb87d9d5e7cf6885caa8cf8605d81b108a097259113ba295a3c1f90bb7" => :yosemite | |
sha256 "9fb74d440426bbdf82d06dcd01e53db625cabfce0c4c85b15aec298007df6fd3" => :mavericks | |
end | |
head do | |
url "https://github.com/transmission/transmission.git" | |
depends_on "autoconf" => :build | |
depends_on "automake" => :build | |
depends_on "libtool" => :build | |
patch do | |
url "https://gist.github.com/Roman2K/025e10006f90066d725d674384a2b7eb/raw/23f49f0e2cede0a0b092854e4d0d160615b26582/nls_m4.patch" | |
sha256 "46f539381ee4cb7313b3dc3cbf9aa2c45770c7213177a81dae15880278367dc0" | |
end | |
end | |
option "with-nls", "Build with native language support" | |
depends_on "pkg-config" => :build | |
depends_on "curl" if MacOS.version <= :leopard | |
depends_on "libevent" | |
if build.with? "nls" | |
depends_on "intltool" => :build | |
depends_on "gettext" | |
end | |
def install | |
system "sh", "autogen.sh" if build.head? | |
system "intltoolize" if build.with? "nls" | |
ENV.append "LDFLAGS", "-framework Foundation -prebind" | |
ENV.append "LDFLAGS", "-liconv" | |
args = %W[--disable-dependency-tracking | |
--prefix=#{prefix} | |
--disable-mac | |
--without-gtk] | |
args << "--disable-nls" if build.without? "nls" | |
system "./configure", *args | |
system "make", "install" | |
(var/"transmission").mkpath | |
end | |
def caveats; <<-EOS.undent | |
This formula only installs the command line utilities. | |
Transmission.app can be downloaded directly from the website: | |
https://www.transmissionbt.com/ | |
Alternatively, install with Homebrew-Cask: | |
brew cask install transmission | |
EOS | |
end | |
plist_options :manual => "transmission-daemon --foreground" | |
def plist; <<-EOS.undent | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>#{plist_name}</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>#{opt_bin}/transmission-daemon</string> | |
<string>--foreground</string> | |
<string>--config-dir</string> | |
<string>#{var}/transmission/</string> | |
<string>--log-info</string> | |
<string>--logfile</string> | |
<string>#{var}/transmission/transmission-daemon.log</string> | |
</array> | |
<key>KeepAlive</key> | |
<dict> | |
<key>NetworkState</key> | |
<true/> | |
</dict> | |
<key>RunAtLoad</key> | |
<true/> | |
</dict> | |
</plist> | |
EOS | |
end | |
test do | |
system "#{bin}/transmission-create", "-o", "#{testpath}/test.mp3.torrent", test_fixtures("test.mp3") | |
assert_match /^magnet:/, shell_output("#{bin}/transmission-show -m #{testpath}/test.mp3.torrent") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment