diff options
| author | Dominyk Tiller | 2014-09-28 23:37:55 +0100 |
|---|---|---|
| committer | Tim D. Smith | 2014-09-28 16:34:18 -0700 |
| commit | 80f2d2990b6003355c72b98f436c338b7d6932ab (patch) | |
| tree | 378075d29de6e84f9739a2fede612f3141e12011 /Library | |
| parent | 760936a6903f5f4650695b172d286dfa4c97e2a1 (diff) | |
| download | homebrew-80f2d2990b6003355c72b98f436c338b7d6932ab.tar.bz2 | |
epstool: replace failing url
Fixes the seemingly broken url for Epstool. The homepage is functional,
but the download link itself is the way of the dodo. This switches the
mirror over to the main url, and I’ve put a new mirror up.
Closes #32773.
Signed-off-by: Tim D. Smith <git@tim-smith.us>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/epstool.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/epstool.rb b/Library/Formula/epstool.rb index a76e437c0..6a0c4e4ce 100644 --- a/Library/Formula/epstool.rb +++ b/Library/Formula/epstool.rb @@ -1,10 +1,10 @@ -require 'formula' +require "formula" class Epstool < Formula - homepage 'http://pages.cs.wisc.edu/~ghost/gsview/epstool.htm' - url 'http://mirror.cs.wisc.edu/pub/mirrors/ghost/ghostgum/epstool-3.08.tar.gz' - mirror 'http://pkgs.fedoraproject.org/repo/pkgs/epstool/epstool-3.08.tar.gz/465a57a598dbef411f4ecbfbd7d4c8d7/epstool-3.08.tar.gz' - sha1 'dc495934f06d3ea8b3209e8b02ea96c66c34f614' + homepage "http://pages.cs.wisc.edu/~ghost/gsview/epstool.htm" + url "http://pkgs.fedoraproject.org/repo/pkgs/epstool/epstool-3.08.tar.gz/465a57a598dbef411f4ecbfbd7d4c8d7/epstool-3.08.tar.gz" + mirror "https://raw.githubusercontent.com/DomT4/LibreMirror/master/Epstool/epstool-3.08.tar.gz" + sha1 "dc495934f06d3ea8b3209e8b02ea96c66c34f614" def install system "make", "install", |
