diff options
Diffstat (limited to 'meta-oe/recipes-devtools/cgdb/cgdb_0.6.8.bb')
-rw-r--r-- | meta-oe/recipes-devtools/cgdb/cgdb_0.6.8.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/cgdb/cgdb_0.6.8.bb b/meta-oe/recipes-devtools/cgdb/cgdb_0.6.8.bb new file mode 100644 index 000000000..74019fb62 --- /dev/null +++ b/meta-oe/recipes-devtools/cgdb/cgdb_0.6.8.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | SUMMARY = "curses-based interface to GDB" | ||
2 | DESCRIPTION = "cgdb is a lightweight curses (terminal-based) interface to the GNU Debugger (GDB)." | ||
3 | HOMEPAGE = "http://cgdb.github.io/" | ||
4 | SECTION = "devel" | ||
5 | LICENSE = "GPLv2" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
7 | |||
8 | DEPENDS = "flex-native readline ncurses" | ||
9 | |||
10 | inherit autotools | ||
11 | |||
12 | SRC_URI = "http://cgdb.me/files/${BP}.tar.gz \ | ||
13 | file://remove-help2man.patch" | ||
14 | SRC_URI[md5sum] = "7bd38c79bf4d794d239928fef401fca3" | ||
15 | SRC_URI[sha256sum] = "be203e29be295097439ab67efe3dc8261f742c55ff3647718d67d52891f4cf41" | ||
16 | |||
17 | CACHED_CONFIGUREVARS = "ac_cv_file__dev_ptmx=yes ac_cv_rl_version=6.2" | ||
18 | EXTRA_OECONF = "--with-readline=${STAGING_LIBDIR} \ | ||
19 | --with-ncurses=${STAGING_LIBDIR}" | ||
20 | |||
21 | RDEPENDS_${PN} = "gdb" | ||