diff options
| author | Khem Raj <raj.khem@gmail.com> | 2012-06-26 08:51:30 -0700 |
|---|---|---|
| committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-07-09 18:40:21 +0200 |
| commit | 680af24d1ff95533db610176e6b01fcc9dcf6699 (patch) | |
| tree | fe3bc39f4b2a2564b234085006836e579e092a6b /meta-oe/recipes-support | |
| parent | 030296b6a5380d46c7732aaebbb25a0fb8af79b4 (diff) | |
| download | meta-openembedded-680af24d1ff95533db610176e6b01fcc9dcf6699.tar.gz | |
mini-iconv: Add package recipe
mini iconv can be used to replace GNU libiconv
it does not do all translation but it good for small
systems especially uclibc based
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support')
| -rw-r--r-- | meta-oe/recipes-support/mini-iconv/mini-iconv.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/mini-iconv/mini-iconv.bb b/meta-oe/recipes-support/mini-iconv/mini-iconv.bb new file mode 100644 index 0000000000..7d5bc683da --- /dev/null +++ b/meta-oe/recipes-support/mini-iconv/mini-iconv.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | # Copyright (C) 2012 Khem Raj <raj.khem@gmail.com> | ||
| 2 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
| 3 | |||
| 4 | DESCRIPTION = "A minimal iconv implementation w/ support for UTF-8, ASCII, ISO-8859-1" | ||
| 5 | HOMEPAGE = "http://tinderbox.dev.gentoo.org/portage/local/misc/mini-iconv/" | ||
| 6 | LICENSE = "MPL-1.1" | ||
| 7 | SECTION = "libs" | ||
| 8 | DEPENDS = "" | ||
| 9 | PROVIDES = "virtual/libiconv" | ||
| 10 | PR = "r0" | ||
| 11 | LIC_FILES_CHKSUM = "file://iconv.c;startline=1;endline=6;md5=35af9d9924327fe8a0a1fe3a2cb454c8" | ||
| 12 | SRC_URI = "http://mirror.meleeweb.net/pub/linux/gentoo/distfiles/mini-iconv.tar.bz2" | ||
| 13 | SRC_URI[md5sum] = "84412221e26505a2b3855d4a1cdcd0e0" | ||
| 14 | SRC_URI[sha256sum] = "3552262bf1bcf8e859a2a3a7adfb0367af8593383e730c492e981477aac0a0d4" | ||
| 15 | |||
| 16 | |||
| 17 | S = "${WORKDIR}/${PN}" | ||
| 18 | |||
| 19 | do_install() { | ||
| 20 | oe_runmake install DESTDIR=${D} PREFIX=${prefix} LIB=${base_libdir} | ||
| 21 | } | ||
