Compare commits
3 commits
4ae0a00e99
...
d7218a0c5f
Author | SHA1 | Date | |
---|---|---|---|
d7218a0c5f | |||
324a4b01db | |||
9c70b2f2c5 |
4 changed files with 8 additions and 29 deletions
6
.SRCINFO
6
.SRCINFO
|
@ -1,6 +1,6 @@
|
|||
pkgbase = spot-client
|
||||
pkgdesc = Gtk/Rust native Spotify client
|
||||
pkgver = 0.3.2
|
||||
pkgver = 0.3.3
|
||||
pkgrel = 1
|
||||
url = https://github.com/xou816/spot
|
||||
arch = x86_64
|
||||
|
@ -25,9 +25,9 @@ pkgbase = spot-client
|
|||
depends = pango
|
||||
optdepends = org.freedesktop.secrets
|
||||
options = !lto
|
||||
source = spot-client-0.3.2-1.tar.gz::https://github.com/xou816/spot/archive/0.3.2.tar.gz
|
||||
source = https://github.com/xou816/spot/archive/0.3.3/spot-0.3.3.tar.gz
|
||||
source = disable-clippy.patch
|
||||
sha512sums = fd8b1f372b5c06d65c0d40465aff018573e913200460b48339a9e106d17a372289b67855877d8642427367fc18e5eac31f2e765e54f4889149a8b5a69cd4638d
|
||||
sha512sums = 8b116e5e9a79efbbb6aef21b89ca93d3ea6083fb02b245662a4e222f85feef76dbc5abcdacfb0a29bf8ee0d8062137b3f0a1648a47537b26a9c16dd7bf525a8a
|
||||
sha512sums = 1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1
|
||||
|
||||
pkgname = spot-client
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
indent_style = tab
|
||||
tab_width = 4
|
14
.gitignore
vendored
14
.gitignore
vendored
|
@ -1,14 +0,0 @@
|
|||
# from https://github.com/github/gitignore/blob/master/ArchLinuxPackages.gitignore
|
||||
*.tar
|
||||
*.tar.*
|
||||
*.rpm
|
||||
*.jar
|
||||
*.exe
|
||||
*.msi
|
||||
*.zip
|
||||
*.tgz
|
||||
*.log
|
||||
*.log.*
|
||||
*.sig
|
||||
|
||||
*/
|
9
PKGBUILD
9
PKGBUILD
|
@ -1,9 +1,10 @@
|
|||
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
||||
# Contributor: Daniel Peukert <daniel@peukert.cc>
|
||||
# Contributor: NicoHood <archlinux {cat} nicohood {dog} de>
|
||||
|
||||
_projectname='spot'
|
||||
pkgname="$_projectname-client"
|
||||
pkgver='0.3.2'
|
||||
pkgver='0.3.3'
|
||||
pkgrel='1'
|
||||
pkgdesc='Gtk/Rust native Spotify client'
|
||||
arch=('x86_64' 'i686' 'arm' 'armv6h' 'armv7h' 'aarch64')
|
||||
|
@ -13,12 +14,12 @@ depends=('alsa-lib' 'cairo' 'glib2' 'glibc' 'graphene' 'gtk4' 'libadwaita' 'libp
|
|||
optdepends=('org.freedesktop.secrets')
|
||||
makedepends=('cargo' 'meson>=0.50.0')
|
||||
checkdepends=('appstream-glib')
|
||||
options=('!lto') # build breaks with LTO enabled (https://gitlab.com/dpeukert/pkgbuilds/-/issues/38)
|
||||
options=('!lto')
|
||||
source=(
|
||||
"$pkgname-$pkgver-$pkgrel.tar.gz::$url/archive/$pkgver.tar.gz"
|
||||
"https://github.com/xou816/$_projectname/archive/$pkgver/$_projectname-$pkgver.tar.gz"
|
||||
'disable-clippy.patch'
|
||||
)
|
||||
sha512sums=('fd8b1f372b5c06d65c0d40465aff018573e913200460b48339a9e106d17a372289b67855877d8642427367fc18e5eac31f2e765e54f4889149a8b5a69cd4638d'
|
||||
sha512sums=('8b116e5e9a79efbbb6aef21b89ca93d3ea6083fb02b245662a4e222f85feef76dbc5abcdacfb0a29bf8ee0d8062137b3f0a1648a47537b26a9c16dd7bf525a8a'
|
||||
'1cb0faced2e6801cb994e9af7b81411355837b2efcd9c82b82751508e0bfcc967c50b3d6296bfdb8c017bbf2e7a503a3920d36cb896e44c896c23f5b9e1d13f1')
|
||||
validpgpkeys=() # waiting for https://github.com/xou816/spot/issues/283
|
||||
|
||||
|
|
Loading…
Reference in a new issue