supersonic-desktop-wayland/PKGBUILD

40 lines
1.2 KiB
Bash
Raw Normal View History

2024-03-31 16:44:12 +02:00
# Maintainer: exu <aur _a_ frm01 _d_ net>
2024-03-23 19:05:03 +01:00
pkgname=supersonic-desktop-wayland
2024-06-05 21:43:06 +02:00
pkgver=0.11.0
2024-03-23 19:05:03 +01:00
pkgrel=1
pkgdesc="A lightweight cross-platform desktop client for Subsonic and Jellyfin music servers."
_pkgname="${pkgname//-desktop-wayland/}"
arch=('x86_64')
url="https://github.com/dweymouth/supersonic"
license=('GPL3')
depends=('glibc'
'libglvnd'
'libx11'
'mpv')
optdepends=('libappindicator-gtk3: Systray indicator support'
'org.freedesktop.secrets: Keyring password store support')
makedepends=('go>=1.17')
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
2024-06-05 21:43:06 +02:00
sha256sums=('635e17d8013a245841f068083fc62ec62add76d2155c559a65bd91aa3982f1d6')
2024-03-23 19:05:03 +01:00
build() {
export GOPATH="$srcdir"/gopath
2024-06-05 21:43:06 +02:00
pushd "$srcdir/${_pkgname}-${pkgver}"
2024-03-23 19:05:03 +01:00
go build -mod=readonly -modcacherw -tags=wayland .
2024-06-05 21:43:06 +02:00
popd
2024-03-23 19:05:03 +01:00
}
package() {
2024-06-05 21:43:06 +02:00
pushd "$srcdir/${_pkgname}-${pkgver}"
install -Dm755 "./${_pkgname}" "${pkgdir}/usr/bin/${pkgname%-wayland}"
install -Dm644 "./res/appicon.png" "${pkgdir}/usr/share/pixmaps/${pkgname%-wayland}.png"
install -Dm644 "./res/${pkgname%-wayland}.desktop" "$pkgdir/usr/share/applications/${pkgname%-wayland}.desktop"
2024-03-23 19:05:03 +01:00
2024-06-05 21:43:06 +02:00
popd
2024-03-23 19:05:03 +01:00
}