Update codium from 1.60.0 to 1.60.1 (#6200)

This commit is contained in:
Ed Reel
2021-09-18 13:33:39 -05:00
committed by GitHub
parent c89d10c0d2
commit 691e2ff7d5

View File

@@ -3,17 +3,17 @@ require 'package'
class Codium < Package
description 'VSCodium is Open Source Software Binaries of VSCode with a community-driven default configuration.'
homepage 'https://vscodium.com/'
version '1.60.0'
version '1.60.1'
license 'MIT'
compatibility 'aarch64,armv7l,x86_64'
case ARCH
when 'aarch64', 'armv7l'
source_url "https://github.com/VSCodium/vscodium/releases/download/#{version}/VSCodium-linux-armhf-#{version}.tar.gz"
source_sha256 '5ea249d23901ee7cd3a1ba16c138245e5bdd1e5602ba7f378a9611d394e64877'
source_sha256 '7873c7cabaf03668d88f4b04ebdb81d3e7521333f021dfb3bb0b1f3a0caa5eac'
@arch = 'arm'
when 'x86_64'
source_url "https://github.com/VSCodium/vscodium/releases/download/#{version}/VSCodium-linux-x64-#{version}.tar.gz"
source_sha256 '2230bfd26b325beed31575863283975be39686d1245f32b9bd8a45b4b08573d0'
source_sha256 '098ee45af269c88532956a388117c9fbb3e2a1667bcb1aa83604b8bdfee5e60f'
@arch = 'x64'
end