blob: c5ce0a0d544d37cbc60d741c236df08cae50fb50 (
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 tools"
LICENSE = "GPL"
SECTION = "gpe"
PRIORITY = "optional"
DEPENDS = "glibc"
PR = "r0"
inherit gpephone
SRC_URI = "${GPEPHONE_MIRROR}/GPRS/GPRS-${PV}.tar.bz2"
S = ${WORKDIR}/GPRS/connect
do_compile() {
oe_runmake PREFIX=${prefix}
}
do_install() {
install -d ${D}/${prefix}/bin
install -m755 connect ${D}/${prefix}/bin
install -m755 disconnect ${D}/${prefix}/bin
}
|