summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorCore2022-05-29 21:01:46 +0100
committerCore2022-05-29 21:01:46 +0100
commitb6e865b47012332f15350e706a142412a69bec50 (patch)
tree2cf970bbbeedd887e4b04e05106219e868bc9261
parentd1415fd427b26a144f00e9f5e79f993d91a9daf5 (diff)
downloadaur-b6e865b47012332f15350e706a142412a69bec50.tar.gz
Resolved issues
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD10
2 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 761614ef805a..3daac853e331 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = cider
pkgdesc = Project Cider. An open-source Apple Music client built from the ground up with Vue.js and Electron. Installed using the debian release builds from CircleCI.
- pkgver = 1.4.7
+ pkgver = 1.5.0
pkgrel = 1
url = https://github.com/CiderApp/Cider.git
arch = armv7h
diff --git a/PKGBUILD b/PKGBUILD
index a5374bae45d5..6b2c008b87d8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=cider
_pkgname=Cider
-pkgver=1.4.7
+pkgver=1.5.0
pkgrel=1
pkgdesc="Project Cider. An open-source Apple Music client built from the ground up with Vue.js and Electron. Installed using the debian release builds from CircleCI."
arch=("armv7h" "i686" "x86_64")
@@ -15,7 +15,7 @@ source=("cider.desktop")
sha256sums=('7bf97dfa92b312ceb95d005a8aa7f225af079ee450f38b58b894e951a529d997')
pkgver() {
- curl $_url | grep tag_name | cut -d '"' -f 4 | sed 's/v//' | xargs
+ curl -s $_url | grep tag_name | cut -d '"' -f 4 | sed 's/v//' | sed 's/\-/./g' | xargs
}
build() {
@@ -36,9 +36,9 @@ build() {
# Fetch the Various Useful Files
echo "Fetching additional Files"
- curl https://raw.githubusercontent.com/CiderApp/cider/master/README.md > README
- curl https://raw.githubusercontent.com/CiderApp/cider/master/LICENSE > LICENSE
- curl https://raw.githubusercontent.com/CiderApp/cider/master/resources/icons/cider.png > icon.png
+ curl -s https://raw.githubusercontent.com/CiderApp/cider/master/README.md > README
+ curl -s https://raw.githubusercontent.com/CiderApp/cider/master/LICENSE > LICENSE
+ curl -s https://raw.githubusercontent.com/CiderApp/cider/master/resources/icons/cider.png > icon.png
}
package() {