aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominyk Tiller2014-10-16 23:13:52 +0100
committerJack Nagel2014-10-16 21:15:08 -0500
commit290c29af2dffce68f82ce5d85b0abc1904300bba (patch)
tree564b2ec7a4fc262d8da8fb75bbd171a0f6e95da4
parentf409455db19219411999bb026905947dbc829747 (diff)
downloadhomebrew-290c29af2dffce68f82ce5d85b0abc1904300bba.tar.bz2
libsndfile: added mirror
The website download link keeps lagging endlessly for me, so I’ve lobbed in a mirror here. Closes #33238. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
-rw-r--r--Library/Formula/libsndfile.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/Library/Formula/libsndfile.rb b/Library/Formula/libsndfile.rb
index c0379efbc..1c2176f3b 100644
--- a/Library/Formula/libsndfile.rb
+++ b/Library/Formula/libsndfile.rb
@@ -1,9 +1,10 @@
-require 'formula'
+require "formula"
class Libsndfile < Formula
- homepage 'http://www.mega-nerd.com/libsndfile/'
- url 'http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.25.tar.gz'
- sha1 'e95d9fca57f7ddace9f197071cbcfb92fa16748e'
+ homepage "http://www.mega-nerd.com/libsndfile/"
+ url "http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.25.tar.gz"
+ mirror "https://mirrors.kernel.org/debian/pool/main/libs/libsndfile/libsndfile_1.0.25.orig.tar.gz"
+ sha1 "e95d9fca57f7ddace9f197071cbcfb92fa16748e"
bottle do
cellar :any
@@ -44,6 +45,6 @@ class Libsndfile < Formula
system "autoreconf", "-i"
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
- system "make install"
+ system "make", "install"
end
end