blob: 86f434c1049593aeba9085b6c160b0fe71b7c350 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "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
10SRC_URI = "http://zlib.net/${BPN}/${BP}.tar.gz"
11
12PROVIDES_class-native += "gzip-native"
13
14DEPENDS = "zlib"
15
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050016EXTRA_OEMAKE = "-e MAKEFLAGS="
17
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018inherit update-alternatives
19
20do_install_class-target() {
21 # Install files into /bin (FHS), which is typical place for gzip
22 install -d ${D}${base_bindir}
23 install ${B}/pigz ${D}${base_bindir}/pigz
24 ln -nsf pigz ${D}${base_bindir}/unpigz
25 ln -nsf pigz ${D}${base_bindir}/pigzcat
26}
27
28do_install() {
29 install -d ${D}${bindir}
30 install ${B}/pigz ${D}${bindir}/gzip
31 ln -nsf gzip ${D}${bindir}/gunzip
32 ln -nsf gzip ${D}${bindir}/zcat
33}
34
35ALTERNATIVE_PRIORITY = "80"
36ALTERNATIVE_${PN} = "gunzip gzip zcat"
37ALTERNATIVE_${PN}_class-nativesdk = ""
38ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip"
39ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip"
40ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat"
41ALTERNATIVE_TARGET = "${base_bindir}/pigz"