-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: Ia749921a2589de7ded9aa2bf01e8230c258b7519
- Loading branch information
Guittet Thibault
committed
Aug 27, 2014
1 parent
0a83cfb
commit cb0f024
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
SUMMARY = "A simple ncurses interface for connman" | ||
DESCRIPTION = "A simple ncurses interface for connman" | ||
HOMEPAGE = "https://github.com/alan-mushi/connman-json-client" | ||
|
||
SECTION = "console/network" | ||
|
||
DEPENDS = "dbus ncurses connman json-c" | ||
RDEPENDS_${PN} = "dbus ncurses connman json-c" | ||
|
||
LICENSE = "GPLv2" | ||
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" | ||
|
||
SRC_URI = "git://github.com/alan-mushi/connman-json-client.git;rev=0a83cfb469ac567cea6c825eb0c129aeed8257ea" | ||
|
||
inherit autotools | ||
|
||
EXTRA_AUTORECONF += " -i" | ||
EXTRA_OECONF += " --disable-optimization --enable-debug" | ||
|
||
S = "${WORKDIR}/git" | ||
|
||
do_install () { | ||
mkdir -p ${D}${bindir} | ||
install -Dm755 connman_ncurses ${D}${bindir}/${PN} | ||
} | ||
|
||
FILES_${PN} = "${bindir}/${PN}" |