summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/pigz/pigz.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/pigz/pigz.inc')
-rw-r--r--meta/recipes-extended/pigz/pigz.inc39
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 @@
1SUMMARY = "A parallel implementation of gzip"
2DESCRIPTION = "pigz, which stands for parallel implementation of gzip, is a \
3fully functional replacement for gzip that exploits multiple processors and \
4multiple cores to the hilt when compressing data. pigz was written by Mark \
5Adler, and uses the zlib and pthread libraries."
6HOMEPAGE = "http://zlib.net/pigz/"
7SECTION = "console/utils"
8LICENSE = "Zlib & Apache-2.0"
9
10PROVIDES_class-native += "gzip-native"
11
12DEPENDS = "zlib"
13
14EXTRA_OEMAKE = "-e MAKEFLAGS="
15
16inherit update-alternatives
17
18do_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
26do_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
33ALTERNATIVE_PRIORITY = "80"
34ALTERNATIVE_${PN} = "gunzip gzip zcat"
35ALTERNATIVE_${PN}_class-nativesdk = ""
36ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip"
37ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip"
38ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat"
39ALTERNATIVE_TARGET = "${base_bindir}/pigz"