diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-05-07 12:35:43 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-07 12:35:43 +0000 |
commit | d138fdc0557953157bf019e6d5f5f6e26c45020d (patch) | |
tree | 9df93e07a48997b9146706e433af98c412514b30 /packages/nkf | |
parent | c0d29ea51fe686bd32573f7bab1622758520b32c (diff) |
add nkf and nkf-native, the network kanji code conversion filter
Diffstat (limited to 'packages/nkf')
-rw-r--r-- | packages/nkf/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/nkf/nkf-native_2.06.bb | 11 | ||||
-rw-r--r-- | packages/nkf/nkf_2.06.bb | 12 |
3 files changed, 23 insertions, 0 deletions
diff --git a/packages/nkf/.mtn2git_empty b/packages/nkf/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/nkf/.mtn2git_empty diff --git a/packages/nkf/nkf-native_2.06.bb b/packages/nkf/nkf-native_2.06.bb new file mode 100644 index 0000000000..22bab38deb --- /dev/null +++ b/packages/nkf/nkf-native_2.06.bb @@ -0,0 +1,11 @@ +require nkf_${PV}.bb +inherit native + +do_stage() { + install -m 0755 nkf ${STAGING_BINDIR} +} + +do_install() { + : +} + diff --git a/packages/nkf/nkf_2.06.bb b/packages/nkf/nkf_2.06.bb new file mode 100644 index 0000000000..9be58d5f8b --- /dev/null +++ b/packages/nkf/nkf_2.06.bb @@ -0,0 +1,12 @@ +DESCRIPTION = "Network Kanji Code Conversion Filter" +LICENSE = "GPL" + +SRC_URI = "http://ftp.debian.org/debian/pool/main/n/nkf/nkf_${PV}.orig.tar.gz" +S = "${WORKDIR}/nkf206" + +EXTRA_OEMAKE = "-e" + +do_install() { + install -d ${D}${bindir} + install -m 0755 nkf ${D}${bindir} +} |