diff options
Diffstat (limited to 'meta/recipes-support/libiconv')
-rw-r--r-- | meta/recipes-support/libiconv/libiconv_1.9.2.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-support/libiconv/libiconv_1.9.2.bb b/meta/recipes-support/libiconv/libiconv_1.9.2.bb new file mode 100644 index 0000000000..d427dcef83 --- /dev/null +++ b/meta/recipes-support/libiconv/libiconv_1.9.2.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | DESCRIPTION = "GNU libiconv - libiconv is for you if your application needs to support \ | ||
2 | multiple character encodings, but that support lacks from your system." | ||
3 | HOMEPAGE = "http://www.gnu.org/software/libiconv" | ||
4 | SECTION = "libs" | ||
5 | PRIORITY = "optional" | ||
6 | NOTES = "Needs to be stripped down to: ascii iso8859-1 eucjp iso-2022jp gb utf8" | ||
7 | PROVIDES = "virtual/libiconv" | ||
8 | PR = "r4" | ||
9 | LICENSE = "LGPL" | ||
10 | SRC_URI = "ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-${PV}.tar.gz" | ||
11 | |||
12 | S = "${WORKDIR}/libiconv-${PV}" | ||
13 | |||
14 | inherit autotools pkgconfig | ||
15 | |||
16 | EXTRA_OECONF += "--enable-shared --enable-static" | ||
17 | |||
18 | do_configure () { | ||
19 | rm -f m4/libtool.m4 libcharset/m4/libtool.m4 | ||
20 | autotools_do_configure | ||
21 | } | ||