diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2017-06-13 10:49:13 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-06-14 14:51:16 +0200 |
commit | 68a820240bf0663fdf8842f129db2cfc13238db5 (patch) | |
tree | 015ea85668ee070e40e798ba86d3c394363f0d55 /meta-oe/recipes-support/dos2unix | |
parent | bdfd313e67ba46bdb1f4245c728fe5aadc2c6ec0 (diff) | |
download | meta-openembedded-68a820240bf0663fdf8842f129db2cfc13238db5.tar.gz |
dos2unix: add recipe
The Dos2unix package includes utilities dos2unix and unix2dos to
convert plain text files in DOS or Mac format to Unix format and
vice versa.
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/dos2unix')
-rw-r--r-- | meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb b/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb new file mode 100644 index 000000000..abf7d1c0c --- /dev/null +++ b/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb | |||
@@ -0,0 +1,34 @@ | |||
1 | SUMMARY = "Convert text file line endings between CRLF and LF" | ||
2 | DESCRIPTION = "The Dos2unix package includes utilities dos2unix and \ | ||
3 | unix2dos to convert plain text files in DOS or Mac format to Unix \ | ||
4 | format and vice versa." | ||
5 | HOMEPAGE = "http://waterlan.home.xs4all.nl/dos2unix.html" | ||
6 | SECTION = "support" | ||
7 | |||
8 | LICENSE = "BSD-2-Clause" | ||
9 | LIC_FILES_CHKSUM = "file://COPYING.txt;md5=1b78fca784db24f4a40e30b300787f3f" | ||
10 | |||
11 | SRC_URI = "git://git.code.sf.net/p/dos2unix/dos2unix" | ||
12 | |||
13 | # Release 7.3.4 | ||
14 | SRCREV = "8381ba4e1c4cd5ce98ebd9c24726d51cb203cde0" | ||
15 | |||
16 | S = "${WORKDIR}/git/dos2unix" | ||
17 | |||
18 | inherit gettext perlnative | ||
19 | |||
20 | # The dos2unix NLS relies on po4a-native, while po4a recipe is | ||
21 | # provided by meta-perl layer, so make it optional here, you | ||
22 | # need have meta-perl in bblayers.conf before enabling nls in | ||
23 | # PACKAGECONFIG. | ||
24 | PACKAGECONFIG ??= "" | ||
25 | PACKAGECONFIG[nls] = "ENABLE_NLS=1,ENABLE_NLS=,po4a-native" | ||
26 | |||
27 | EXTRA_OEMAKE = "${PACKAGECONFIG_CONFARGS} LDFLAGS_USER='${LDFLAGS}'" | ||
28 | EXTRA_OEMAKE_class-native = "ENABLE_NLS=" | ||
29 | |||
30 | do_install () { | ||
31 | oe_runmake DESTDIR="${D}${base_prefix}" install | ||
32 | } | ||
33 | |||
34 | BBCLASSEXTEND = "native nativesdk" | ||