brew 安装软件404

·

1 min read

mac 下的brew是一个非常好用的包管理器。

安装mysql什么的,非常方便。

今天打算安装一个ghostscript

brew install ghostscript

但是发现下载链接是404.。

所以干脆修改他的安装脚本

brew edit ghostscript

编辑他的安装教程,修改他的下载链接为github上的release版本,并且计算他的sha256值,在脚本修改即可。

shasum -a 256 /xxxx.tar.gz

class Ghostscript < Formula desc “Interpreter for PostScript and PDF” homepage “ghostscript.com

stable do url “github.com/ArtifexSoftware/ghostpdl-downloa..” sha256 “5fc93079749a250be5404c465943850e3ed5ffbc0d5c07e10c7c5ee8afbbdb1b” end end

然后继续安装

brew install ghostscript