diff options
author | Graeme Gregory <dp@xora.org.uk> | 2007-10-03 14:39:43 +0000 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2007-10-03 14:39:43 +0000 |
commit | 3e976e3505bd04e84d2d57dcb057970b5b8219d9 (patch) | |
tree | c4e50483567a2787d16ad7bc28ce82937415b4df | |
parent | cb7efaa77ff5eb38cfc59a84523cf017e250291b (diff) | |
parent | 3715bbdc2c230efaba8e98418db59a2943096e5b (diff) |
merge of '3fbb4f20eaa43ac0231abc4fca35b72b8315a041'
and '63ff287b2ffbc385772337cafb93d55ebffd3192'
-rw-r--r-- | MAINTAINERS | 2 | ||||
-rw-r--r-- | argtable/.mtn2git_empty | 0 | ||||
-rw-r--r-- | argtable/argtable_2.7.bb | 21 |
3 files changed, 22 insertions, 1 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 7533c3f8fc..f58a2d8960 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -39,7 +39,7 @@ Mail: cbrake@bec-systems.com Website: http://bec-systems.com Interests: Support in OE for single board computers, web application support Machines: compulab-pxa270, logicpd-pxa270, -Recipes: mono +Recipes: mono argtable Person: Erik Hovland Mail: erik@hovland.org diff --git a/argtable/.mtn2git_empty b/argtable/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/argtable/.mtn2git_empty diff --git a/argtable/argtable_2.7.bb b/argtable/argtable_2.7.bb new file mode 100644 index 0000000000..27804626f3 --- /dev/null +++ b/argtable/argtable_2.7.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "Argtable is an ANSI C library for parsing GNU style command line options." +SECTION = "libs" +LICENSE = "LGPL" +HOMEPAGE = "http://argtable.sourceforge.net/" + +PR = "r0" + +DEPENDS = "libtool-cross" + +SRC_URI = "${SOURCEFORGE_MIRROR}/argtable/argtable2-6.tar.gz" + +S = ${WORKDIR}/argtable2-6 + +inherit autotools + +do_stage () { + oe_libinstall -a -so libargtable2 ${STAGING_LIBDIR} + install -m 0644 src/argtable2.h ${STAGING_INCDIR} +} + + |