Update spot-client to 0.1.10

This commit is contained in:
Daniel Peukert 2021-03-14 09:34:04 +01:00
parent 6494e8db56
commit 0ce3385263
2 changed files with 8 additions and 6 deletions

View File

@ -1,6 +1,6 @@
pkgbase = spot-client
pkgdesc = Gtk/Rust native Spotify client
pkgver = 0.1.9
pkgver = 0.1.10
pkgrel = 1
url = https://github.com/xou816/spot
arch = x86_64
@ -18,7 +18,8 @@ pkgbase = spot-client
depends = libhandy
depends = libpulse
depends = openssl
source = spot-client-0.1.9-1.tar.gz::https://github.com/xou816/spot/archive/0.1.9.tar.gz
sha256sums = 39499aa48cffb5d1f1352affa362c014f9c29570648cc59ff2ba1dde5d2372cd
optdepends = org.freedesktop.secrets
source = spot-client-0.1.10-1.tar.gz::https://github.com/xou816/spot/archive/0.1.10.tar.gz
sha256sums = 9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979
pkgname = spot-client

View File

@ -1,7 +1,7 @@
# Maintainer: Daniel Peukert <daniel@peukert.cc>
_projectname='spot'
pkgname="$_projectname-client"
pkgver='0.1.9'
pkgver='0.1.10'
pkgrel='1'
pkgdesc='Gtk/Rust native Spotify client'
arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64')
@ -9,15 +9,16 @@ url="https://github.com/xou816/$_projectname"
license=('MIT')
depends=('alsa-lib' 'glib2' 'gtk3' 'libhandy' 'libpulse' 'openssl')
makedepends=('cargo' 'meson>=0.50.0')
optdepends=('org.freedesktop.secrets')
source=("$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz")
sha256sums=('39499aa48cffb5d1f1352affa362c014f9c29570648cc59ff2ba1dde5d2372cd')
sha256sums=('9399ba0673ad32a9e6220eaa220c08fba8d6464adab5018130e5cad8818b0979')
_sourcedirectory="$_projectname-$pkgver"
_builddirectory='build'
build() {
cd "$srcdir/"
arch-meson "$_sourcedirectory" "$_builddirectory" -Doffline=false
arch-meson "$_sourcedirectory" "$_builddirectory" -Doffline=false -Dbuildtype=release
meson compile -C "$_builddirectory"
}