diff options
| author | Dominyk Tiller | 2014-12-23 02:09:20 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-12-23 09:38:07 +0000 |
| commit | 67ca7e852de5a1ea6f070787148b7cc9e36f4106 (patch) | |
| tree | 16b68b70c1b9e57597a75506a94e1f75ebb29371 /Library/Formula | |
| parent | 84beffdc10333c2e24830125d91d66d0414182e7 (diff) | |
| download | homebrew-67ca7e852de5a1ea6f070787148b7cc9e36f4106.tar.bz2 | |
schroedinger: added mirror
The upstream website and URL are dead presently. This adds a mirror
to mitigate the package being unavailable.
The generation of bottles, which this PR will force, should also aid
that situation.
Problem reported in [this comment](https://github.com/Homebrew/homebrew/commit/4f4ada9cadc3996077c7fed23c16aa54dea79acd#commitcomment-9071321).
Closes #35202.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/schroedinger.rb | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/Library/Formula/schroedinger.rb b/Library/Formula/schroedinger.rb index d4bd37783..671717d51 100644 --- a/Library/Formula/schroedinger.rb +++ b/Library/Formula/schroedinger.rb @@ -1,36 +1,33 @@ -require 'formula' - class Schroedinger < Formula - homepage 'http://diracvideo.org/' - url 'http://diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz' - sha1 'c01ee0bed6c1bd7608763927f719f94ebc6aaa41' + homepage "http://diracvideo.org/" + url "http://diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz" + mirror "https://mirrors.kernel.org/debian/pool/main/s/schroedinger/schroedinger_1.0.11.orig.tar.gz" + sha1 "c01ee0bed6c1bd7608763927f719f94ebc6aaa41" head do - url 'git://diracvideo.org/git/schroedinger.git' + url "git://diracvideo.org/git/schroedinger.git" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end - depends_on 'pkg-config' => :build - depends_on 'orc' + depends_on "pkg-config" => :build + depends_on "orc" def install - system "autoreconf -i -f" if build.head? + system "autoreconf", "-fvi" if build.head? system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" - # Disable compiling the test suite. - # The test suite is known not to build against Orc 0.4.16 in Schroedinger 1.0.11. + # The test suite is known not to build against Orc >0.4.16 in Schroedinger 1.0.11. # A fix is in upstream, so test when pulling 1.0.12 if this is still needed. See: # http://www.mail-archive.com/schrodinger-devel@lists.sourceforge.net/msg00415.html - inreplace "Makefile" do |s| s.change_make_var! "SUBDIRS", "schroedinger doc tools" s.change_make_var! "DIST_SUBDIRS", "schroedinger doc tools" end - system "make install" + system "make", "install" end end |
