blob: 2a8ba64a2b537dd0c6546b6811ea9540420d681c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "Command line interface for Network Manager"
HOMEPAGE = "http://vidner.net/martin/software/cnetworkmanager/"
LICENSE = "GPL"
SECTION = "console/network"
RDEPENDS = "python-core python-crypt python-dbus python-math python-pygobject python-re python-textutils python-uuid python-xml"
PR = "r1"
PV = "0.8+git"
SRC_URI = "git://repo.or.cz/r/cnetworkmanager.git;protocol=http;tag=801f95b5fd856cd8ec25dc56839f47c1a12e6041"
S = "${WORKDIR}/git"
do_compile() {
}
do_install(){
install -d ${D}${bindir}
install -m 755 cnetworkmanager ${D}${bindir}
install -d ${D}${sysconfdir}/dbus-1/system.d
install -m 644 cnetworkmanager.conf ${D}${sysconfdir}/dbus-1/system.d
}
|