summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a31e6c9197e7efdf567fcdbf282774532d5bb182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: 0xGingi <0xgingi@0xgingi.com>
pkgname=('jellyfin-rpc-git')
pkgver=0.14.1.r1.g09a2b60
pkgrel=2
pkgdesc="Displays the content you're currently watching on Jellyfin on Discord"
arch=('x86_64')
url="https://github.com/Radiicall/jellyfin-rpc"
license=('GPL3')
depends=('openssl' 'rust')
makedepends=('git')
optdepends=('rustup')
source=("git+https://github.com/Radiicall/jellyfin-rpc.git"
	"git+https://github.com/0xGingi/jellyfin-rpc-aur.git")
md5sums=('SKIP' 'SKIP')

pkgver() {
  cd jellyfin-rpc
  git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}


build() {
	cd jellyfin-rpc
	cargo build --release
}

#Jellyfin-RPC cannot be ran as root and is designed to be ran in userspace
#As such, I've set very loose permissions for the configs

package() {
	cd jellyfin-rpc
	install -Dm755 ./target/release/jellyfin-rpc "$pkgdir/opt/jellyfin-rpc/jellyfin-rpc"
	install -Dm777 ./example.json "$pkgdir/opt/jellyfin-rpc/example.json"
	install -Dm755 ./README.md "$pkgdir/usr/share/doc/jellyfin-rpc"
	cd ..
	cd jellyfin-rpc-aur
	install -Dm777 ./jellyfin-rpc.service "$pkgdir/etc/systemd/user/jellyfin-rpc.service"

	echo
	echo
	echo -------------------------------------------------------------
	echo 'READ THE GITHUB DOCUMENTATION - CONFIG FILE MUST BE EDITED BEFORE USE'
	echo 'jellyfin-rpc binary is located at /opt/jellyfin-rpc/jellyfin-rpc'
	echo 'config example is located at /opt/jellyfin-rpc/example.json'
	echo 'move the example.json to main.json in the same folder'
	echo 'systemd service file is located at /etc/systemd/user/jellyfin-rpc.service'
	echo -------------------------------------------------------------
	echo
	echo
}