blob: cb8991dcd2aba00981e65eca9229a656d0ea57d2 [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
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"