blob: 5ba5df3d45167b2184d5343b6b61e295c3388ab7 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit eutils systemd
DESCRIPTION="Logitechmediaserver in a container"
HOMEPAGE="https://github.com/lmiphay/logitechmediaserver-docker"
SRC_URI="https://github.com/lmiphay/${PN}/archive/refs/tags/${PVR}.tar.gz"
RESTRICT="mirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
app-containers/docker
sys-apps/coreutils
sys-apps/grep
"
DEPEND="
"
DOCS="README.md"
S="${WORKDIR}/${PF}"
src_install() {
dobin "bin/logitechmediaserver-docker"
newconfd "openrc/logitechmediaserver.conf.d" "logitechmediaserver"
newinitd "openrc/logitechmediaserver.init.d" "logitechmediaserver"
systemd_dounit "etc/logitechmediaserver.service"
insinto "/etc"
doins "etc/logitechmediaserver.conf"
}
|