blob: 95dec8c40652940d4c4085ff740761cd7f0295c9 (
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
|
# Maintainer: graysky <therealgraysky AT protonmail DOT com>
pkgname=kodi-standalone-service
pkgver=1.139
pkgrel=1
pkgdesc="Systemd services to run kodi in stand-alone mode without a DE"
# This is only for x86_64
# The kodi-rpi packages for ArchARM provide their own versions of this package
arch=(x86_64)
url="https://github.com/graysky2/kodi-standalone-service"
license=(MIT)
install=readme.install
depends=(polkit kodi)
replaces=(kodi-standalone-x11-service kodi-standalone-gbm-service kodi-standalone-wayland-service)
backup=(etc/conf.d/kodi-standalone)
optdepends=(
'cage: for kodi-wayland.service'
'wayland: for kodi-wayland.service'
'xorg-server: for kodi-x11.service'
'xorg-xinit: for kodi-x11.service'
)
source=("$pkgname-v$pkgver.tar.gz::https://github.com/graysky2/$pkgname/archive/v$pkgver.tar.gz")
b2sums=('449fd4cea5fb3d3e50a7f8e46caf7cd92dccccbb37e152d3c2fd5b77df9d26d631a5681a5f873b2df29be03c2cb982dd66ba9e9df05f6fccca1f919f47523fbb')
package() {
cd "$pkgname-$pkgver"
make
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|