diff options
-rw-r--r-- | meta/recipes-devtools/gnu-config/gnu-config_20111111.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gnu-config/gnu-config_20111111.bb b/meta/recipes-devtools/gnu-config/gnu-config_20111111.bb new file mode 100644 index 0000000000..27400c617d --- /dev/null +++ b/meta/recipes-devtools/gnu-config/gnu-config_20111111.bb | |||
@@ -0,0 +1,41 @@ | |||
1 | SUMMARY = "gnu-configize" | ||
2 | DESCRIPTION = "Tool that installs the GNU config.guess / config.sub into a directory tree" | ||
3 | SECTION = "devel" | ||
4 | LICENSE = "GPLv2" | ||
5 | LIC_FILES_CHKSUM = "file://config.guess;endline=39;md5=a3669d051b3a8408d69751e53b2e1cc1" | ||
6 | |||
7 | DEPENDS_virtclass-native = "perl-native-runtime" | ||
8 | |||
9 | INHIBIT_DEFAULT_DEPS = "1" | ||
10 | |||
11 | PR = "r0" | ||
12 | |||
13 | SRC_URI = "http://downloads.yoctoproject.org/releases/gnu-config/gnu-config-yocto-${PV}.tgz \ | ||
14 | file://config-guess-uclibc.patch \ | ||
15 | file://gnu-configize.in" | ||
16 | |||
17 | SRC_URI[md5sum] = "30be385c919a25cd9522205ef49e5328" | ||
18 | SRC_URI[sha256sum] = "0750afa8d8ee988b6ead1c2d02b565597f809e2e3ad14886ed7803d3bbc8b0cd" | ||
19 | |||
20 | do_compile() { | ||
21 | : | ||
22 | } | ||
23 | |||
24 | do_install () { | ||
25 | install -d ${D}${datadir}/gnu-config \ | ||
26 | ${D}${bindir} | ||
27 | cat ${WORKDIR}/gnu-configize.in | \ | ||
28 | sed -e 's,@gnu-configdir@,${datadir}/gnu-config,g' \ | ||
29 | -e 's,@autom4te_perllibdir@,${datadir}/autoconf,g' > ${D}${bindir}/gnu-configize | ||
30 | # In the native case we want the system perl as perl-native can't have built yet | ||
31 | if [ "${BUILD_ARCH}" != "${TARGET_ARCH}" ]; then | ||
32 | sed -i -e 's,/usr/bin/env,${bindir}/env,g' ${D}${bindir}/gnu-configize | ||
33 | fi | ||
34 | chmod 755 ${D}${bindir}/gnu-configize | ||
35 | install -m 0644 config.guess config.sub ${D}${datadir}/gnu-config/ | ||
36 | } | ||
37 | |||
38 | PACKAGES = "${PN}" | ||
39 | FILES_${PN} = "${bindir} ${datadir}/gnu-config" | ||
40 | |||
41 | BBCLASSEXTEND = "native" | ||