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.inc21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-extended/pigz/pigz.inc b/meta/recipes-extended/pigz/pigz.inc
new file mode 100644
index 0000000000..acf1b71134
--- /dev/null
+++ b/meta/recipes-extended/pigz/pigz.inc
@@ -0,0 +1,21 @@
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"
9
10SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz \
11 file://ldflags.patch"
12
13PROVIDES_virtclass-native += "gzip-native"
14
15DEPENDS_virtclass-native = "zlib-native"
16
17do_install () {
18 install -d ${D}${bindir}
19 install ${B}/pigz ${D}${bindir}/gzip
20 install ${B}/unpigz ${D}${bindir}/gunzip
21}