diff options
author | Holger Freyther <zecke@selfish.org> | 2006-05-13 14:00:14 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-13 14:00:14 +0000 |
commit | 69bdd1a150ad4017fa2518df05cff17be98e9cb5 (patch) | |
tree | d0c1412bc7bf26a31fd00b8e953c5843773c5c9c /packages/nkf | |
parent | 4e6cf107a375dd8100293ff4de8c8e23be55a2ea (diff) | |
parent | 13e983ea44cd0b8e1b7fc7ff6fdb892658db80ad (diff) |
merge of 008eb71d2c280e1f5c511b697e1376dda71d5eef
and 61329a2030536aebd4f09b262832d612b83a3f03
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} +} |