diff options
| author | Randy MacLeod <randy.macleod@windriver.com> | 2021-03-15 11:55:28 -0400 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-03-18 12:43:41 -0700 |
| commit | 2bf78554f563b34d423d2a4014679d7b09517197 (patch) | |
| tree | 82abc281051e632a12cf996490095af07b32c90f /meta-oe/recipes-devtools/tclap/tclap_1.4.0.bb | |
| parent | 3591919feb92f7879db81a09bed11325cbad26e4 (diff) | |
| download | meta-openembedded-2bf78554f563b34d423d2a4014679d7b09517197.tar.gz | |
tclap: upgrade 1.2.2 -> 1.4.0
Project switched from autotools to CMake so drop the Makefile.am patch.
The COPYING file copyright years were updated. Add description.
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/tclap/tclap_1.4.0.bb')
| -rw-r--r-- | meta-oe/recipes-devtools/tclap/tclap_1.4.0.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/tclap/tclap_1.4.0.bb b/meta-oe/recipes-devtools/tclap/tclap_1.4.0.bb new file mode 100644 index 0000000000..13f66e47da --- /dev/null +++ b/meta-oe/recipes-devtools/tclap/tclap_1.4.0.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | SUMMARY = "Templatized C++ Command Line Parser" | ||
| 2 | HOMEPAGE = "http://tclap.sourceforge.net/" | ||
| 3 | DESCRIPTION = "TCLAP is a small, flexible library that provides a simple interface \ | ||
| 4 | for defining and accessing command line arguments. It was intially inspired by the \ | ||
| 5 | user friendly CLAP libary. The difference is that this library is templatized, so \ | ||
| 6 | the argument class is type independent. Type independence avoids identical-except-for-type \ | ||
| 7 | objects, such as IntArg, FloatArg, and StringArg. While the library is not strictly \ | ||
| 8 | compliant with the GNU or POSIX standards, it is close. \ | ||
| 9 | " | ||
| 10 | LICENSE = "MIT" | ||
| 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=5c64b2e8cc50917b2744a90950faa7cd" | ||
| 12 | |||
| 13 | SRCREV = "799a8b1f99818e39fee19d0601030770af1221e1" | ||
| 14 | SRC_URI = "git://git.code.sf.net/p/tclap/code;branch=1.4 \ | ||
| 15 | " | ||
| 16 | |||
| 17 | S = "${WORKDIR}/git" | ||
| 18 | inherit cmake | ||
| 19 | |||
| 20 | ALLOW_EMPTY_${PN} = "1" | ||
| 21 | |||
| 22 | BBCLASSEXTEND = "native nativesdk" | ||
