blob: a2db9f06861ed066f7ae4be2a39eda4d0bbc0f1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "Shell script to convert GPE .desktop files into e17 eap files and menus"
DEPENDS = "edje-utils e-wm"
RDEPENDS += "edje-utils e-wm"
LICENSE = "MIT"
SECTION = "e/apps"
MAINTAINER = "Justin Patrin <papercrane@reversefold.com>"
PR = "r3"
SRC_URI = "file://e17-gpe-menu-convert.sh"
do_install() {
install -d ${D}/usr/bin/
install -m 755 ${WORKDIR}/e17-gpe-menu-convert.sh ${D}/usr/bin/e17-gpe-menu-convert.sh
}
pkg_postinst() {
/usr/bin/e17-gpe-menu-convert.sh
}
|