blob: 87d126c9bcd353467116c35e85a51e9a84e5fca0 (
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
|
DESCRIPTION = "CellHunter - A game to collect information about mobile phone cells"
SECTION = "x11/utils"
DEPENDS = "python"
RDEPENDS = "python-subprocess python-netclient python-math python-core python-io python-pygtk python-dbus frameworkd"
PR = "r0"
SRC_URI = "\
http://ch.omoco.de/cellhunter/files/cellhunter-${PV}.tar.gz \
"
do_configure () {
:
}
do_compile () {
:
}
do_install () {
install -d ${D}${bindir}
install -m 0755 cellhunter.py ${D}${bindir}/
install -m 0755 cellhunter_upload.sh ${D}${bindir}/
install -d ${D}${datadir}/pixmaps
install -d ${D}${datadir}/applications
install -m 0644 cellhunter.desktop ${D}${datadir}/applications/cellhunter.desktop
install -m 0644 cellhunter.png ${D}${datadir}/pixmaps/cellhunter.png
}
|