summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/gettext/gettext-minimal-native_0.20.1.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-12-17 17:00:08 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-01-02 16:39:13 +0000
commit0ae95bcc5113a9913aeabaccd5629f2165d986ed (patch)
tree3d38f845fe8af8281805296a825d2e71a763430f /meta/recipes-core/gettext/gettext-minimal-native_0.20.1.bb
parent1f1d9c25a79b90604a0c43921b32850a6d01e5d3 (diff)
downloadpoky-0ae95bcc5113a9913aeabaccd5629f2165d986ed.tar.gz
gettext-minimal-native: update to 0.20.1
Rather than update a tarball, I took m4 files directly from an install of 0.20.1. The patch is dropped as guile has long been removed from oe-core. (From OE-Core rev: be1fe0120f99e88580cde8fe9004d8135458cac4) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/gettext/gettext-minimal-native_0.20.1.bb')
-rw-r--r--meta/recipes-core/gettext/gettext-minimal-native_0.20.1.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-core/gettext/gettext-minimal-native_0.20.1.bb b/meta/recipes-core/gettext/gettext-minimal-native_0.20.1.bb
new file mode 100644
index 0000000000..7a4dcbec57
--- /dev/null
+++ b/meta/recipes-core/gettext/gettext-minimal-native_0.20.1.bb
@@ -0,0 +1,30 @@
1SUMMARY = "Minimal gettext for supporting native autoconf/automake"
2DESCRIPTION = "Contains the m4 macros sufficient to support building \
3autoconf/automake. This provides a significant build time speedup by \
4the removal of gettext-native from most dependency chains (now only \
5needed for gettext for the target)."
6SRC_URI = "file://aclocal/ \
7 file://config.rpath \
8 file://Makefile.in.in \
9 file://remove-potcdate.sin \
10 file://COPYING \
11"
12
13INHIBIT_DEFAULT_DEPS = "1"
14INHIBIT_AUTOTOOLS_DEPS = "1"
15
16LICENSE = "FSF-Unlimited"
17LIC_FILES_CHKSUM = "file://COPYING;md5=4bd090a20bfcd1a18f1f79837b5e3e91"
18
19inherit native
20
21S = "${WORKDIR}"
22
23do_install () {
24 install -d ${D}${datadir}/aclocal/
25 cp ${WORKDIR}/aclocal/*.m4 ${D}${datadir}/aclocal/
26 install -d ${D}${datadir}/gettext/po/
27 cp ${WORKDIR}/config.rpath ${D}${datadir}/gettext/
28 cp ${WORKDIR}/Makefile.in.in ${D}${datadir}/gettext/po/
29 cp ${WORKDIR}/remove-potcdate.sin ${D}${datadir}/gettext/po/
30}