diff options
author | Ben Shelton <ben.shelton@ni.com> | 2014-08-15 10:00:31 -0500 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-21 21:35:06 +0200 |
commit | db6489c2faea6d51e1dd45d627e722b978511130 (patch) | |
tree | fd1c7269dc4c06ea03c00e6d846cd19fcbb60b7c /meta-oe/recipes-devtools/cgdb/cgdb_0.6.7.bb | |
parent | e4edce9d5639643cb218806eaed0825f40f449bb (diff) | |
download | meta-openembedded-db6489c2faea6d51e1dd45d627e722b978511130.tar.gz |
cgdb: add recipe
cgdb is a lightweight ncurses-based interface to gdb that provides
syntax highlighting, visual breakpoints, and other features.
Signed-off-by: Ben Shelton <ben.shelton@ni.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/cgdb/cgdb_0.6.7.bb')
-rw-r--r-- | meta-oe/recipes-devtools/cgdb/cgdb_0.6.7.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/cgdb/cgdb_0.6.7.bb b/meta-oe/recipes-devtools/cgdb/cgdb_0.6.7.bb new file mode 100644 index 000000000..26b2782f0 --- /dev/null +++ b/meta-oe/recipes-devtools/cgdb/cgdb_0.6.7.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | SUMMARY = "curses-based interface to gdb" | ||
2 | HOMEPAGE = "http://cgdb.github.io/" | ||
3 | SECTION = "devel" | ||
4 | LICENSE = "GPLv2" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
6 | DEPENDS = "readline ncurses gdb" | ||
7 | |||
8 | SRC_URI = "http://cgdb.me/files/cgdb-${PV}.tar.gz \ | ||
9 | file://configfix.patch" | ||
10 | SRC_URI[md5sum] = "e2d9a973d2683faf8130a82703bf6a31" | ||
11 | SRC_URI[sha256sum] = "074ed31d1e827a04574add8c27d391447d75313e85ff938005d8ec939499fda9" | ||
12 | |||
13 | EXTRA_OECONF = "--with-readline=${STAGING_LIBDIR} --with-ncurses=${STAGING_LIBDIR}" | ||
14 | |||
15 | inherit autotools | ||
16 | |||