blob: 97bd460935456d463ec95615dfeef318147e6c99 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools git-r3 multilib
EGIT_COMMIT="71e5b8c1da7acf726d00bde30da8554662cf97e1"
#EGIT_COMMIT_DATE="20140213"
EGIT_REPO_URI="https://github.com/opdenkamp/xbmc-pvr-addons.git"
DESCRIPTION="XBMC addon: add VDR (http://www.cadsoft.de/vdr) as a TV/PVR Backend"
HOMEPAGE="https://github.com/opdenkamp/xbmc-pvr-addons"
SRC_URI=""
KEYWORDS="~amd64 ~arm ~x86"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
S=${WORKDIR}/${P}
src_prepare() {
eautoreconf
}
src_configure() {
econf --prefix=/usr \
--libdir=/usr/share/xbmc/addons \
--datadir=/usr/share/xbmc/addons
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|