blob: 0984ef80831c70fb9c91b8c050aa8fc9269ec311 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "Argtable is an ANSI C library for parsing GNU style command line options."
SECTION = "libs"
LICENSE = "LGPL"
HOMEPAGE = "http://argtable.sourceforge.net/"
FILE_PR = "r1"
DEPENDS = "libtool-cross"
SRC_URI = "${SOURCEFORGE_MIRROR}/argtable/argtable2-7.tar.gz"
S = ${WORKDIR}/argtable2-7
inherit autotools
do_stage () {
oe_libinstall -a -so libargtable2 ${STAGING_LIBDIR}
install -m 0644 src/argtable2.h ${STAGING_INCDIR}
}
|