summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvergreenTree2024-05-14 20:57:37 -0500
committerEvergreenTree2024-05-14 21:00:43 -0500
commit123a20a8ecfaf5802c8eed316763adf5bbeb0ec2 (patch)
tree77df290f9b8424865a225f4e4d21f6763761ef65
parent2c691be5543785525ea559b17228a7e79075d758 (diff)
downloadaur-bitwig-studio.tar.gz
Update to 5.1.9
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD8
-rwxr-xr-xupdater.sh2
3 files changed, 8 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0a7a63ab44e0..75b4f32b55dc 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = bitwig-studio
pkgdesc = Digital audio workstation for music production, remixing and live performance
- pkgver = 5.1.8
+ pkgver = 5.1.9
pkgrel = 1
url = https://www.bitwig.com/
arch = x86_64
@@ -18,7 +18,7 @@ pkgbase = bitwig-studio
conflicts = bitwig-studio-legacy
conflicts = bitwig-8-track
options = !strip
- source = https://downloads.bitwig.com/stable/5.1.8/bitwig-studio-5.1.8.deb
- sha256sums = 2b134b69efee4d82f59bf5feffbc2bee184a7f0df536907d330f51cdfad3baeb
+ source = bitwig-studio-5.1.9.deb::https://www.bitwig.com/dl/Bitwig%20Studio/5.1.9/installer_linux/
+ sha256sums = 27990ba9708c9c66f464c8444ba3d020f8cde75a6d9411a3e05cbca92cc9e908
pkgname = bitwig-studio
diff --git a/PKGBUILD b/PKGBUILD
index a45a554d25e2..de4be66f0076 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,8 +2,8 @@
# Upstream: Bitwig GmbH <support@bitwig.com>
pkgname='bitwig-studio'
-pkgver='5.1.8'
-_pkgver='5.1.8'
+pkgver='5.1.9'
+_pkgver='5.1.9'
pkgrel='1'
pkgdesc='Digital audio workstation for music production, remixing and live performance'
arch=('x86_64')
@@ -15,8 +15,8 @@ provides=('clap-host' 'vst-host' 'vst3-host')
replaces=()
conflicts=('bitwig-studio-legacy' 'bitwig-8-track')
options=(!strip)
-source=("https://downloads.bitwig.com/stable/${_pkgver}/bitwig-studio-${_pkgver}.deb")
-sha256sums=('2b134b69efee4d82f59bf5feffbc2bee184a7f0df536907d330f51cdfad3baeb')
+source=("bitwig-studio-${_pkgver}.deb::https://www.bitwig.com/dl/Bitwig%20Studio/${_pkgver}/installer_linux/")
+sha256sums=('27990ba9708c9c66f464c8444ba3d020f8cde75a6d9411a3e05cbca92cc9e908')
package() {
# Unpack package contents
diff --git a/updater.sh b/updater.sh
index 32ed32293245..7cd7361bda92 100755
--- a/updater.sh
+++ b/updater.sh
@@ -32,7 +32,7 @@ try_increment() {
rm -f *.deb *.pkg.*
## Download the package
- wget -q --show-progress "${source[0]}" || return
+ wget -q --show-progress -O "${source[0]%%::*}" "${source[0]#*::}" || return
## Update checksum
local targetsum="$(sha256sum bitwig-studio-${shortver}.deb | cut -d ' ' -f 1)"