-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPKGBUILD
21 lines (19 loc) · 997 Bytes
/
PKGBUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Phusit Somboonyingsuk
pkgname=mprisence
pkgver=0.5.1
pkgrel=1
pkgdesc="A Discord Rich Presence client for MPRIS-compatible media players with support for album art."
url="https://github.com/lazykern/mprisence"
license=("MIT")
arch=("x86_64")
provides=("mprisence")
conflicts=("mprisence")
source=("https://github.com/lazykern/mprisence/releases/download/v$pkgver/mprisence-$pkgver-x86_64.tar.gz" "https://raw.githubusercontent.com/lazykern/mprisence/main/LICENSE" "https://raw.githubusercontent.com/lazykern/mprisence/main/systemd/mprisence.service")
sha256sums=('1b2a8ef5c6258144fc0aa657f7a426c4678c63be8c339efbf0597a2ba1d34c29'
'2efd06eb77e15171ec8727caece105c68fcf253f57d5af76d7964c69f16fbb7d'
'8103053db7f9850d775785db8a56461a4440220b231144899bf8da38a0f7363c')
package() {
install -Dm755 mprisence -t "$pkgdir/usr/bin"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -Dm644 mprisence.service "$pkgdir/usr/lib/systemd/user/mprisence.service"
}