使用 Homebrew 构建 Inkscape Beta

使用 Homebrew 构建 Inkscape Beta

我想知道我是否可以使用 homebrew 来获取 inkscape 的测试版。我知道我可以使用它来获取他们的当前版本,brew cask install inkscape但是有什么方法可以获取他们的测试版吗?

提前致谢

答案1

您可以运行brew cask edit inkscape来编辑安装Inkscape的公式。

例如,最新版本位于:

http://alpha.inkscape.org/prereleases/Inkscape-latest.dmg

因此,将文件内容替换为:

cask 'inkscape' do
  version :latest
  sha256 :no_check

  url "http://alpha.inkscape.org/prereleases/Inkscape-latest.dmg"
  name 'Inkscape'
  homepage 'https://inkscape.org/'

  depends_on x11: true

  app 'Inkscape.app'
  binary "#{appdir}/Inkscape.app/Contents/Resources/bin/inkscape"

  zap trash: '~/.inkscape-etc'
end

保存并运行brew cask install inkscape

“最新”版本所需的具体更改是关键字:latest。此外,您使用 跳过了校验和验证:no_check。因此,请谨慎下载。

相关内容