blob: 4b943f4a6d449a10409c242c1ebd79f6b02147f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "GSM/GPRS mux initializer"
LICENSE = "GPL"
SECTION = "gpe"
PRIORITY = "optional"
DEPENDS = "glibc"
PR = "r0"
inherit gpephone
SRC_URI = "${GPEPHONE_MIRROR}/GPRS/GPRS-${PV}.tar.bz2 \
file://oe-install.patch;patch=1"
S = ${WORKDIR}/GPRS/cms92init-simple
do_compile() {
oe_runmake PREFIX=${prefix}
}
do_install() {
oe_runmake PREFIX=${prefix} DESTDIR=${D} install
}
|