diff options
-rw-r--r-- | argtable/.mtn2git_empty | 0 | ||||
-rw-r--r-- | argtable/argtable_2.7.bb | 21 |
2 files changed, 21 insertions, 0 deletions
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} +} + + |