7e87fa31e1
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 Homebrew/homebrew#32773. Signed-off-by: Tim D. Smith <git@tim-smith.us>
15 lines
562 B
Ruby
15 lines
562 B
Ruby
require "formula"
|
|
|
|
class Epstool < Formula
|
|
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",
|
|
"EPSTOOL_ROOT=#{prefix}",
|
|
"EPSTOOL_MANDIR=#{man}",
|
|
"CC=#{ENV.cc}"
|
|
end
|
|
end
|