diff options
| author | Xu Cheng | 2014-07-15 16:08:37 +0800 |
|---|---|---|
| committer | Jack Nagel | 2014-07-15 13:12:29 -0500 |
| commit | 26fce3a5b9cd587e929bce3613187aa214b72380 (patch) | |
| tree | fe2c9bf37b5b9187e2c96c15002f968e9e76dbbf /Library | |
| parent | c0bffbcdc9d9f729b382bd3bfd4cef5fc66fcc19 (diff) | |
| download | homebrew-26fce3a5b9cd587e929bce3613187aa214b72380.tar.bz2 | |
osxfuse: modernize
Closes #30876.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/osxfuse.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/osxfuse.rb b/Library/Formula/osxfuse.rb index 70518ee50..fb89a1a00 100644 --- a/Library/Formula/osxfuse.rb +++ b/Library/Formula/osxfuse.rb @@ -1,10 +1,10 @@ -require 'formula' +require "formula" class Osxfuse < Formula - homepage 'http://osxfuse.github.io' - url 'https://github.com/osxfuse/osxfuse.git', :tag => 'osxfuse-2.6.4' + homepage "http://osxfuse.github.io" + url "https://github.com/osxfuse/osxfuse.git", :tag => "osxfuse-2.6.4" - head 'https://github.com/osxfuse/osxfuse.git', :branch => 'osxfuse-2' + head "https://github.com/osxfuse/osxfuse.git", :branch => "osxfuse-2" bottle do sha1 "e661cd54c9dfa9efb383ad283456ae1afe210329" => :mavericks @@ -19,7 +19,7 @@ class Osxfuse < Formula depends_on "libtool" => :build depends_on "gettext" => :build - conflicts_with 'fuse4x', :because => 'both install `fuse.pc`' + conflicts_with "fuse4x", :because => "both install `fuse.pc`" def install # Do not override Xcode build settings |
