aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Christenson2014-08-26 13:06:07 -0600
committerJack Nagel2014-08-26 19:34:22 -0500
commit9f3d473e7f6984d3685249ad3ed1f37ce717fa90 (patch)
treea2def1b114b909fdb9e229ec845bf2d1e0fe1d0f /Library/Formula
parent4413f9594ef14e9edff914dd5b33c7d51b69d020 (diff)
downloadhomebrew-9f3d473e7f6984d3685249ad3ed1f37ce717fa90.tar.bz2
x264: use HTTPS links
Use HTTPS on homepage and git links, change single quotes to double. Closes #31909. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/x264.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/x264.rb b/Library/Formula/x264.rb
index 3be2394b6..a2ac1aa55 100644
--- a/Library/Formula/x264.rb
+++ b/Library/Formula/x264.rb
@@ -1,15 +1,15 @@
-require 'formula'
+require "formula"
class X264 < Formula
- homepage "http://www.videolan.org/developers/x264.html"
+ homepage "https://www.videolan.org/developers/x264.html"
# the latest commit on the stable branch
- url "http://git.videolan.org/git/x264.git", :revision => "021c0dc6c95c1bc239c9db78a80dd85fc856a4dd"
+ url "https://git.videolan.org/git/x264.git", :revision => "021c0dc6c95c1bc239c9db78a80dd85fc856a4dd"
version "r2455"
- head "http://git.videolan.org/git/x264.git"
+ head "https://git.videolan.org/git/x264.git"
devel do
# the latest commit on the master branch
- url "http://git.videolan.org/git/x264.git", :revision => "dd79a61e0e354a432907f2d1f7137b27a12dfce7"
+ url "https://git.videolan.org/git/x264.git", :revision => "dd79a61e0e354a432907f2d1f7137b27a12dfce7"
version "r2479"
end
@@ -20,9 +20,9 @@ class X264 < Formula
sha1 "6e5fb8f851796c81a235b18cf88a23d08d743603" => :lion
end
- depends_on 'yasm' => :build
+ depends_on "yasm" => :build
- option '10-bit', 'Build a 10-bit x264 (default: 8-bit)'
+ option "10-bit", "Build a 10-bit x264 (default: 8-bit)"
option "with-mp4=", "Select mp4 output: none (default), l-smash or gpac"
case ARGV.value "with-mp4"
@@ -42,7 +42,7 @@ class X264 < Formula
elsif Formula["gpac"].installed?
args << "--disable-lsmash"
end
- args << "--bit-depth=10" if build.include? '10-bit'
+ args << "--bit-depth=10" if build.include? "10-bit"
# For running version.sh correctly
buildpath.install_symlink cached_download/".git"