forked from mx3L/serviceapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenigma2-plugin-systemplugins-serviceapp.bb
More file actions
38 lines (28 loc) · 1.1 KB
/
enigma2-plugin-systemplugins-serviceapp.bb
File metadata and controls
38 lines (28 loc) · 1.1 KB
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
DESCRIPTION = "serviceapp service for enigma2"
AUTHOR = "Maroš Ondrášek <mx3ldev@gmail.com>"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
DEPENDS = "enigma2 uchardet openssl"
RDEPENDS_${PN} = "enigma2 uchardet openssl"
SRCREV = "${AUTOREV}"
SRC_URI = "git://github.com/mx3L/serviceapp.git;branch=master"
S = "${WORKDIR}/git"
inherit autotools gitpkgv pythonnative pkgconfig
PV = "git${SRCPV}"
PKGV = "git${GITPKGV}"
EXTRA_OECONF = "\
BUILD_SYS=${BUILD_SYS} \
HOST_SYS=${HOST_SYS} \
STAGING_INCDIR=${STAGING_INCDIR} \
STAGING_LIBDIR=${STAGING_LIBDIR} \
"
do_install_append() {
rm ${D}${libdir}/enigma2/python/Plugins/SystemPlugins/ServiceApp/*.pyc
}
FILES_${PN} = "\
${libdir}/enigma2/python/Plugins/SystemPlugins/ServiceApp/*.pyo \
${libdir}/enigma2/python/Plugins/SystemPlugins/ServiceApp/locale/*/LC_MESSAGES/ServiceApp.mo \
${libdir}/enigma2/python/Plugins/SystemPlugins/ServiceApp/serviceapp.so"
FILES_${PN}-dev = "\
${libdir}/enigma2/python/Plugins/SystemPlugins/ServiceApp/*.py \
${libdir}/enigma2/python/Plugins/SystemPlugins/ServiceApp/serviceapp.la"