inherit autotools pkgconfig HOMEPAGE = "http://www.openmoko.org" OPENMOKO_RELEASE ?= "OM-2007.2" OPENMOKO_MIRROR ?= "svn://svn.openmoko.org/trunk" def openmoko_two_get_license(d): openmoko, section = bb.data.getVar('SECTION', d, 1).split("/") return "LGPL GPL".split()[section != "libs"] def openmoko_two_get_subdir(d): openmoko, section = bb.data.getVar('SECTION', d, 1).split("/") if section == 'base': return "" elif section == 'libs': return "libraries" elif section in 'apps tools pim'.split(): return "applications" elif section == "panel-plugin": return "panel-plugins" elif section == "inputmethods": return "inputmethods" elif section == "daemons": return "daemons" elif section == "misc": return "misc" else: return section LICENSE = "${@openmoko_two_get_license(d)}" SUBDIR = "${@openmoko_two_get_subdir(d)}" SRC_URI := "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/${SUBDIR};module=${PN};proto=http" S = "${WORKDIR}/${PN}" FILES_${PN} += "${datadir}/icons" SVNREV = "r${SRCREV}" #SVNREV = "${SRCDATE}" /'>index : openembedded-core.git
Trygve Laugstøl
summaryrefslogtreecommitdiff
path: root/meta/classes/core-image.bbclass
blob: e2ad0fcf310d4e8ae0d58d17e2af2d7a06de8d78 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72