diff options
author | Ross Burton <ross.burton@intel.com> | 2018-01-22 15:49:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-26 13:09:09 +0000 |
commit | 683d44656ea926b49433b0b055ca5dcad965b755 (patch) | |
tree | 85ba8784aa8682b123eeb2d2f8cb1032c1609a39 /meta/recipes-extended/pigz | |
parent | 8146e929e2643afad18da09b4f1b16b894503674 (diff) | |
download | poky-683d44656ea926b49433b0b055ca5dcad965b755.tar.gz |
pigz: merge bb/inc
(From OE-Core rev: 7703c74ea08ceddc7641f3cbdf1df5d0993ebf0f)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/pigz')
-rw-r--r-- | meta/recipes-extended/pigz/pigz.inc | 39 | ||||
-rw-r--r-- | meta/recipes-extended/pigz/pigz_2.3.4.bb | 46 |
2 files changed, 42 insertions, 43 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" | ||
diff --git a/meta/recipes-extended/pigz/pigz_2.3.4.bb b/meta/recipes-extended/pigz/pigz_2.3.4.bb index f4832dffe1..431d9bdc35 100644 --- a/meta/recipes-extended/pigz/pigz_2.3.4.bb +++ b/meta/recipes-extended/pigz/pigz_2.3.4.bb | |||
@@ -1,11 +1,49 @@ | |||
1 | require pigz.inc | 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" | ||
2 | LIC_FILES_CHKSUM = "file://pigz.c;beginline=7;endline=21;md5=a21d4075cb00ab4ca17fce5e7534ca95" | 9 | LIC_FILES_CHKSUM = "file://pigz.c;beginline=7;endline=21;md5=a21d4075cb00ab4ca17fce5e7534ca95" |
3 | 10 | ||
4 | UPSTREAM_CHECK_URI = "http://zlib.net/${BPN}/" | 11 | PROVIDES_class-native += "gzip-native" |
5 | UPSTREAM_CHECK_REGEX = "pigz-(?P<pver>.*)\.tar" | 12 | |
6 | SRC_URI = "https://github.com/madler/pigz/archive/v${PV}.tar.gz;downloadfilename=${BP}.tar.gz" | 13 | SRC_URI = "https://github.com/madler/pigz/archive/v${PV}.tar.gz;downloadfilename=${BP}.tar.gz" |
7 | SRC_URI[md5sum] = "c109057050b15edf3eb9bb4d0805235e" | 14 | SRC_URI[md5sum] = "c109057050b15edf3eb9bb4d0805235e" |
8 | SRC_URI[sha256sum] = "763f2fdb203aa0b7b640e63385e38e5dd4e5aaa041bc8e42aa96f2ef156b06e8" | 15 | SRC_URI[sha256sum] = "763f2fdb203aa0b7b640e63385e38e5dd4e5aaa041bc8e42aa96f2ef156b06e8" |
9 | 16 | ||
10 | BBCLASSEXTEND = "native nativesdk" | 17 | UPSTREAM_CHECK_URI = "http://zlib.net/${BPN}/" |
18 | UPSTREAM_CHECK_REGEX = "pigz-(?P<pver>.*)\.tar" | ||
19 | |||
20 | DEPENDS = "zlib" | ||
11 | 21 | ||
22 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | ||
23 | |||
24 | inherit update-alternatives | ||
25 | |||
26 | do_install_class-target() { | ||
27 | # Install files into /bin (FHS), which is typical place for gzip | ||
28 | install -d ${D}${base_bindir} | ||
29 | install ${B}/pigz ${D}${base_bindir}/pigz | ||
30 | ln -nsf pigz ${D}${base_bindir}/unpigz | ||
31 | ln -nsf pigz ${D}${base_bindir}/pigzcat | ||
32 | } | ||
33 | |||
34 | do_install() { | ||
35 | install -d ${D}${bindir} | ||
36 | install ${B}/pigz ${D}${bindir}/gzip | ||
37 | ln -nsf gzip ${D}${bindir}/gunzip | ||
38 | ln -nsf gzip ${D}${bindir}/zcat | ||
39 | } | ||
40 | |||
41 | ALTERNATIVE_PRIORITY = "80" | ||
42 | ALTERNATIVE_${PN} = "gunzip gzip zcat" | ||
43 | ALTERNATIVE_${PN}_class-nativesdk = "" | ||
44 | ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip" | ||
45 | ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip" | ||
46 | ALTERNATIVE_LINK_NAME[zcat] = "${base_bindir}/zcat" | ||
47 | ALTERNATIVE_TARGET = "${base_bindir}/pigz" | ||
48 | |||
49 | BBCLASSEXTEND = "native nativesdk" | ||