blob: a6e3e17aee321d7b5452e50a2f0af8a8998e26f1 (
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
|
DESCRIPTION = "The PhoneUI app starters"
HOMEPAGE = "http://shr-project.org/"
LICENSE = "GPL"
SECTION = "x11/applications"
DEPENDS += "dbus-glib"
PV = "0.0.0+gitr${SRCREV}"
PR = "r0"
inherit pkgconfig autotools
SRC_URI = "git://git.shr-project.org/repo/phoneui-apps.git;protocol=http;branch=master"
S = "${WORKDIR}/git"
PACKAGES = "${PN}-dialer ${PN}-messages ${PN}-contacts"
FILES_${PN}-dialer = "\
/usr/bin/phoneui-dialer \
/usr/share/applications/phoneui-dialer.desktop \
"
FILES_${PN}-messages = "\
/usr/bin/phoneui-messages \
/usr/share/applications/phoneui-messages.desktop \
"
FILES_${PN}-contacts = "\
/usr/bin/phoneui-contacts \
/usr/share/applications/phoneui-contacts.desktop \
"
|