diff options
author | Laura Demkowicz-Duffy | 2024-05-18 00:56:19 +0100 |
---|---|---|
committer | Laura Demkowicz-Duffy | 2024-05-18 00:56:19 +0100 |
commit | 01ce885ea7778e64f34909363d0714e866b933e4 (patch) | |
tree | a7e4ae04553d98b64c5ba94c58827c55301d818b | |
parent | ebd535905d7dff52b4a88b66e63c2a08f5630caf (diff) | |
download | aur-01ce885ea7778e64f34909363d0714e866b933e4.tar.gz |
chore: bump version to v2024_05_05
Thanks to @SpieringsAE for pointing out the different package platforms.
-rw-r--r-- | .SRCINFO | 16 | ||||
-rw-r--r-- | PKGBUILD | 18 |
2 files changed, 21 insertions, 13 deletions
@@ -1,17 +1,23 @@ pkgbase = zigup-bin pkgdesc = Download and manage zig compilers - pkgver = v2024_03_13 + pkgver = v2024_05_05 pkgrel = 1 url = https://github.com/marler8997/zigup arch = x86_64 + arch = aarch64 + arch = armv7h license = MIT-0 provides = zigup provides = zig conflicts = zigup conflicts = zig - source = https://github.com/marler8997/zigup/releases/download/v2024_03_13/zigup.ubuntu-latest-x86_64.zip - source = https://github.com/marler8997/zigup/archive/refs/tags/v2024_03_13.tar.gz - sha256sums = 8b05403e5b58ecd6a221251a884513e3f035d67e122bf11594633da6579a7133 - sha256sums = 219a3e0fb391e85578033445e6dd57699b71da97cea56a4db1995017324113a3 + source = https://github.com/marler8997/zigup/archive/refs/tags/v2024_05_05.tar.gz + sha256sums = 36bea57e38b7106e61095ff8625d44e0ff0821f79c0c485b36d231787b08b9a4 + source_x86_64 = https://github.com/marler8997/zigup/releases/download/v2024_05_05/zigup-x86_64-linux.tar.gz + sha256sums_x86_64 = 9d3c0784474fed0778f453691f92dc9d075b653e3b8efed2f5da14d346e36ba8 + source_aarch64 = https://github.com/marler8997/zigup/releases/download/v2024_05_05/zigup-aarch64-linux.tar.gz + sha256sums_aarch64 = f9e724488f58223ee19472a009d219b305d1e13f6db03a935a4eb4ee7f6954ba + source_armv7h = https://github.com/marler8997/zigup/releases/download/v2024_05_05/zigup-arm-linux.tar.gz + sha256sums_armv7h = d642e99e0e7657c4ceaa9cfb179a94dadfade25666e62b819f1a50720456ae79 pkgname = zigup-bin @@ -1,20 +1,22 @@ # Maintainer: Laura Demkowicz-Duffy <dev[at]demkowiczduffy.co.uk> pkgname=zigup-bin _pkgname=zigup -pkgver=v2024_03_13 +pkgver=v2024_05_05 pkgrel=1 pkgdesc="Download and manage zig compilers" -arch=('x86_64') +arch=('x86_64' 'aarch64' 'armv7h') url="https://github.com/marler8997/zigup" license=('MIT-0') provides=('zigup' 'zig') conflicts=('zigup' 'zig') -source=( - "$url/releases/download/$pkgver/zigup.ubuntu-latest-x86_64.zip" - "$url/archive/refs/tags/$pkgver.tar.gz" -) -sha256sums=('8b05403e5b58ecd6a221251a884513e3f035d67e122bf11594633da6579a7133' - '219a3e0fb391e85578033445e6dd57699b71da97cea56a4db1995017324113a3') +source=("$url/archive/refs/tags/$pkgver.tar.gz") +source_x86_64=("$url/releases/download/$pkgver/zigup-x86_64-linux.tar.gz") +source_aarch64=("$url/releases/download/$pkgver/zigup-aarch64-linux.tar.gz") +source_armv7h=("$url/releases/download/$pkgver/zigup-arm-linux.tar.gz") +sha256sums=('36bea57e38b7106e61095ff8625d44e0ff0821f79c0c485b36d231787b08b9a4') +sha256sums_x86_64=('9d3c0784474fed0778f453691f92dc9d075b653e3b8efed2f5da14d346e36ba8') +sha256sums_aarch64=('f9e724488f58223ee19472a009d219b305d1e13f6db03a935a4eb4ee7f6954ba') +sha256sums_armv7h=('d642e99e0e7657c4ceaa9cfb179a94dadfade25666e62b819f1a50720456ae79') package() { install -Dm 0755 $_pkgname $pkgdir/usr/bin/$_pkgname |