diff options
Diffstat (limited to 'meta/recipes-extended/pigz/pigz.inc')
-rw-r--r-- | meta/recipes-extended/pigz/pigz.inc | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/meta/recipes-extended/pigz/pigz.inc b/meta/recipes-extended/pigz/pigz.inc deleted file mode 100644 index 978f905329..0000000000 --- a/meta/recipes-extended/pigz/pigz.inc +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | SUMMARY = "A parallel implementation of gzip" | ||
2 | DESCRIPTION = "pigz, which stands for parallel implementation of gzip, is a \ | ||
3 | fully functional replacement for gzip that exploits multiple processors and \ | ||
4 | multiple cores to the hilt when compressing data. pigz was written by Mark \ | ||
5 | Adler, and uses the zlib and pthread libraries." | ||
6 | HOMEPAGE = "http://zlib.net/pigz/" | ||
7 | SECTION = "console/utils" | ||
8 | LICENSE = "Zlib & Apache-2.0" | ||
9 | |||
10 | PROVIDES_class-native += "gzip-native" | ||
11 | |||
12 | DEPENDS = "zlib" | ||
13 | |||
14 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | ||
15 | |||
16 | inherit update-alternatives | ||
17 | |||
18 | do_install_class-target() { | ||
19 | # Install files into /bin (FHS), which is typical place for gzip | ||
20 | install -d ${D}${base_bindir} | ||
21 | install ${B}/pigz ${D}${base_bindir}/pigz | ||
22 | ln -nsf pigz ${D}${base_bindir}/unpigz | ||
23 | ln -nsf pigz ${D}${base_bindir}/pigzcat | ||
24 | } | ||
25 | |||
26 | do_install() { | ||
27 | install -d ${D}${bindir} | ||
28 | install ${B}/pigz ${D}${bindir}/gzip | ||
29 | ln -nsf gzip ${D}${bindir}/gunzip | ||
30 | ln -nsf gzip ${D}${bindir}/zcat | ||
31 | } | ||
32 | |||
33 | ALTERNATIVE_PRIORITY = "80" | ||
34 | ALTERNATIVE_${PN} = "gunzip gzip zcat" | ||
35 | ALTERNATIVE_${PN}_class-nativesdk = "" | ||
36 | ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip" | ||
37 | ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip" | ||
38 | ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat" | ||
39 | ALTERNATIVE_TARGET = "${base_bindir}/pigz" | ||