Skip to content

Commit

Permalink
Merge pull request #214 from madieatv/4.1
Browse files Browse the repository at this point in the history
4 1
  • Loading branch information
Captain committed Jul 21, 2017
2 parents 45bb2bb + 89f6c63 commit 93bd2be
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 1 deletion.
3 changes: 2 additions & 1 deletion meta-oe/recipes-distros/openatv/image/openatv-feeds.bb
Expand Up @@ -7,7 +7,7 @@ ALLOW_EMPTY_${PN} = "1"
PACKAGE_ARCH = "${MACHINE_ARCH}"

PV = "1.0"
PR = "r29"
PR = "r30"

inherit packagegroup

Expand All @@ -29,6 +29,7 @@ RRECOMMENDS_${PN} = "\
enigma2-plugin-extensions-cooltvguide \
enigma2-plugin-extensions-bmediacenter \
enigma2-plugin-skins-dmcconcinnityhd \
enigma2-plugin-skins-iflatfhd \
enigma2-plugin-skins-ax-blue-fhd-4atv \
enigma2-plugin-skins-blue-line-oe-4atv \
enigma2-plugin-skincomponents-bmediacenter-ax-blue-skin \
Expand Down
@@ -0,0 +1,58 @@
SUMMARY = "Skin iFlatFHD"
MAINTAINER = "Nathanael2316 and Gordon55"

require conf/license/license-gplv2.inc

inherit gitpkgv allarch

SRCREV = "${AUTOREV}"
PV = "5.2+git${SRCPV}"
PKGV = "5.2+git${GITPKGV}"
VER="5.2r1"

SRC_URI="git://github.com/openatv/iflat.git;protocol=git"

FILES_${PN} = "/usr/*"

S = "${WORKDIR}/git"

do_compile_append() {
python -O -m compileall ${S}
}

do_install() {
install -d ${D}/usr/share/enigma2
cp -rp ${S}/usr ${D}/
chmod -R a+rX ${D}/usr/share/enigma2/
}

pkg_postinst_${PN} () {
#!/bin/sh
echo " ...Skin successful installed. "
exit 0
}

pkg_postrm_${PN} () {
#!/bin/sh
rm -rf /usr/share/enigma2/iFlatFHD
echo " "
echo " ...Skin successful removed. "
exit 0
}

pkg_preinst_${PN} () {
#!/bin/sh
echo " iFlatFHD Skin will be now installed... "
exit 0
}

pkg_prerm_${PN} () {
#!/bin/sh
echo " "
echo " iFlatFHD is now being removed... "
echo " "
exit 0
}

do_package_qa[noexec] = "1"

0 comments on commit 93bd2be

Please sign in to comment.