aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libyaml.rb
diff options
context:
space:
mode:
authorDominyk Tiller2014-10-07 03:38:08 +0100
committerMike McQuaid2014-10-07 04:37:58 +0100
commit835a79e8316e91db72fc50e24ca0966c63f2392e (patch)
treef37fcf0c84eff3a343a7d0d65075e7453f465061 /Library/Formula/libyaml.rb
parent00b314c5532bc51a0da233c13114975f756d0536 (diff)
downloadhomebrew-835a79e8316e91db72fc50e24ca0966c63f2392e.tar.bz2
libyaml: add a mirror.
Adds a mirror to the libyaml formula, and generally cleans up the single/double quotes preference. Closes #32986. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/libyaml.rb')
-rw-r--r--Library/Formula/libyaml.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/Library/Formula/libyaml.rb b/Library/Formula/libyaml.rb
index 4bb854d3b..50a211c48 100644
--- a/Library/Formula/libyaml.rb
+++ b/Library/Formula/libyaml.rb
@@ -1,9 +1,10 @@
-require 'formula'
+require "formula"
class Libyaml < Formula
- homepage 'http://pyyaml.org/wiki/LibYAML'
- url 'http://pyyaml.org/download/libyaml/yaml-0.1.6.tar.gz'
- sha1 'f3d404e11bec3c4efcddfd14c42d46f1aabe0b5d'
+ homepage "http://pyyaml.org/wiki/LibYAML"
+ url "http://pyyaml.org/download/libyaml/yaml-0.1.6.tar.gz"
+ mirror "https://mirrors.kernel.org/debian/pool/main/liby/libyaml/libyaml_0.1.6.orig.tar.gz"
+ sha1 "f3d404e11bec3c4efcddfd14c42d46f1aabe0b5d"
bottle do
cellar :any
@@ -18,6 +19,6 @@ class Libyaml < Formula
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
- system "make install"
+ system "make", "install"
end
end