diff options
author | Cameron Katri | 2020-10-08 01:22:11 -0400 |
---|---|---|
committer | Cameron Katri | 2020-10-08 01:22:11 -0400 |
commit | 54fea51720c428f7e582cab152614c87e4f7ae3e (patch) | |
tree | d79a67b82abd012dbdbc684918abaa0a764ac47c | |
parent | 2e4dfd2835052cfb9e2007369a82569e0da47b25 (diff) | |
download | aur-54fea51720c428f7e582cab152614c87e4f7ae3e.tar.gz |
re-add aarch64 and armv7h
-rw-r--r-- | .SRCINFO | 10 | ||||
-rw-r--r-- | PKGBUILD | 17 |
2 files changed, 20 insertions, 7 deletions
@@ -4,6 +4,8 @@ pkgbase = vscodium-bin pkgrel = 1 url = https://github.com/VSCodium/vscodium arch = x86_64 + arch = aarch64 + arch = armv7h license = MIT depends = fontconfig depends = libxtst @@ -22,9 +24,13 @@ pkgbase = vscodium-bin conflicts = code conflicts = vscode source = vscodium-bin.desktop - source = https://github.com/VSCodium/vscodium/releases/download/1.49.3/VSCodium-linux-x64-1.49.3.tar.gz sha256sums = 65e6b053e6d8be61763801312ded64a82cf835d77a6eabe1b9d7eb9e87b2e49b - sha256sums = d8b71d50d82e8d3151f11604103a7fd3fff3a2dceec64a31e1a3683a9d2fc2a7 + source_x86_64 = vscodium-bin-1.49.3.tar.gz::https://github.com/VSCodium/vscodium/releases/download/1.49.3/VSCodium-linux-x64-1.49.3.tar.gz + sha256sums_x86_64 = d8b71d50d82e8d3151f11604103a7fd3fff3a2dceec64a31e1a3683a9d2fc2a7 + source_aarch64 = vscodium-bin-1.49.3.tar.gz::https://github.com/VSCodium/vscodium/releases/download/1.49.3/VSCodium-linux-arm64-1.49.3.tar.gz + sha256sums_aarch64 = f29957eccc2feaa36a7a67369a2c738e9dc717ea5446642af92feba72cdf91f8 + source_armv7h = vscodium-bin-1.49.3.tar.gz::https://github.com/VSCodium/vscodium/releases/download/1.49.3/VSCodium-linux-arm-1.49.3.tar.gz + sha256sums_armv7h = 965942ffef07fe5a51837b5360bfa3c625dd53a1dec009a081f6e8f92fcb9178 pkgname = vscodium-bin @@ -8,7 +8,7 @@ _pkgname=VSCodium pkgver=1.49.3 pkgrel=1 pkgdesc="Binary releases of VS Code without MS branding/telemetry/licensing." -arch=('x86_64') +arch=('x86_64' 'aarch64' 'armv7h') url="https://github.com/VSCodium/vscodium" license=('MIT') depends=( @@ -22,10 +22,17 @@ optdepends=( provides=('code') conflicts=('code' 'vscode') -sha256sums=('65e6b053e6d8be61763801312ded64a82cf835d77a6eabe1b9d7eb9e87b2e49b' - 'd8b71d50d82e8d3151f11604103a7fd3fff3a2dceec64a31e1a3683a9d2fc2a7') -source=('vscodium-bin.desktop' - "https://github.com/VSCodium/vscodium/releases/download/${pkgver}/${_pkgname}-linux-x64-${pkgver}.tar.gz") +sha256sums=('65e6b053e6d8be61763801312ded64a82cf835d77a6eabe1b9d7eb9e87b2e49b') +sha256sums_x86_64=('d8b71d50d82e8d3151f11604103a7fd3fff3a2dceec64a31e1a3683a9d2fc2a7') +sha256sums_aarch64=('f29957eccc2feaa36a7a67369a2c738e9dc717ea5446642af92feba72cdf91f8') +sha256sums_armv7h=('965942ffef07fe5a51837b5360bfa3c625dd53a1dec009a081f6e8f92fcb9178') +source=('vscodium-bin.desktop') + +source_x86_64=("${pkgname}-${pkgver}.tar.gz::https://github.com/VSCodium/vscodium/releases/download/${pkgver}/${_pkgname}-linux-x64-${pkgver}.tar.gz") + +source_armv7h=("${pkgname}-${pkgver}.tar.gz::https://github.com/VSCodium/vscodium/releases/download/${pkgver}/${_pkgname}-linux-arm-${pkgver}.tar.gz") + +source_aarch64=("${pkgname}-${pkgver}.tar.gz::https://github.com/VSCodium/vscodium/releases/download/${pkgver}/${_pkgname}-linux-arm64-${pkgver}.tar.gz") shopt -s extglob |