git » librespot.git » commit c9feb86

Update to 0.3.0

author Philip Goto
2021-10-14 11:29:53 UTC
committer Philip Goto
2021-10-14 11:29:53 UTC
parent 7b13ea2e3111acaccf51be8fd8dbec63c1eb795d

Update to 0.3.0

.SRCINFO +3 -3
PKGBUILD +6 -6

diff --git a/.SRCINFO b/.SRCINFO
index 0a17243..ee666ec 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
 pkgbase = librespot
 	pkgdesc = Open source client library for Spotify
-	pkgver = 0.2.0
+	pkgver = 0.3.0
 	pkgrel = 2
 	url = https://github.com/librespot-org/librespot
 	arch = x86_64
@@ -14,7 +14,7 @@ pkgbase = librespot
 	depends = gst-plugins-base-libs
 	depends = portaudio
 	depends = sdl2
-	source = librespot-0.2.0.tar.gz::https://github.com/librespot-org/librespot/archive/v0.2.0.tar.gz
-	sha256sums = cd6e7ae63583584598dead53b5e8e4077ab37df6e3b59c2a7416459b9a649fc3
+	source = librespot-0.3.0.tar.gz::https://github.com/librespot-org/librespot/archive/v0.3.0.tar.gz
+	sha256sums = 3ae67ac39606d049a26ee9e4b59f932222aac0098845ce3e1ef33c1b98080454
 
 pkgname = librespot
diff --git a/PKGBUILD b/PKGBUILD
index 0484272..748424f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,11 +1,11 @@
 # Maintainer: Philip Goto <philip.goto@gmail.com>
 
 pkgname=librespot
-pkgver=0.2.0
+pkgver=0.3.0
 pkgrel=2
-pkgdesc="Open source client library for Spotify"
+pkgdesc='Open source client library for Spotify'
 arch=(x86_64 aarch64)
-url="https://github.com/librespot-org/librespot"
+url='https://github.com/librespot-org/librespot'
 license=(MIT)
 depends=(
 	libpulse
@@ -20,7 +20,7 @@ makedepends=(
 	cargo
 )
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha256sums=('cd6e7ae63583584598dead53b5e8e4077ab37df6e3b59c2a7416459b9a649fc3')
+sha256sums=('3ae67ac39606d049a26ee9e4b59f932222aac0098845ce3e1ef33c1b98080454')
 
 build() {
 	return 0
@@ -29,7 +29,7 @@ build() {
 package() {
 	cd "${pkgname}-${pkgver}"
 	cargo install --no-track --locked --all-features --root "${pkgdir}/usr/" --path .
-	install -Dm644 contrib/librespot.service ${pkgdir}/usr/lib/systemd/system/librespot.service
-	# install -Dm644 contrib/librespot.user.service ${pkgdir}/usr/lib/systemd/user/librespot.service
+	install -Dm644 contrib/librespot.service "${pkgdir}/usr/lib/systemd/system/librespot.service"
+	install -Dm644 contrib/librespot.user.service "${pkgdir}/usr/lib/systemd/user/librespot.service"
 	install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }