diff options
author | Kevin Tian <kevin.tian@intel.com> | 2010-07-23 15:11:15 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-24 00:01:11 +0100 |
commit | f23b594087dba38054a3001e66390d462fa61cbb (patch) | |
tree | 2010d7c96aebcf487e009ba5bb01809f0f6d09c9 /meta/packages | |
parent | d91b4f5c364a62d4ea5b23526d90bed0bb28a9b1 (diff) | |
download | poky-f23b594087dba38054a3001e66390d462fa61cbb.tar.gz |
gzip: new package
borrow from OE gzip 1.3.13 after some cleanups:
- no ${S} redefinition
- configure.patch is not required
also add native support
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/gzip/gzip.inc | 38 | ||||
-rw-r--r-- | meta/packages/gzip/gzip_1.4.bb | 5 |
2 files changed, 43 insertions, 0 deletions
diff --git a/meta/packages/gzip/gzip.inc b/meta/packages/gzip/gzip.inc new file mode 100644 index 0000000000..28df4d4a5d --- /dev/null +++ b/meta/packages/gzip/gzip.inc | |||
@@ -0,0 +1,38 @@ | |||
1 | DESCRIPTION = "GNU Gzip is a popular data compression program originally written by Jean-loup Gailly for the GNU project. Mark Adler wrote the decompression part" | ||
2 | HOMEPAGE = "http://www.gnu.org/software/gzip/" | ||
3 | SECTION = "console/utils" | ||
4 | # change to GPLv3+ in 2007/07. Previous GPLv2 version is 1.3.12 | ||
5 | LICENSE = "GPLv3+" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | ||
7 | file://gzip.h;firstline=8;endline=20;md5=e2ec6b91fbe43a18f6081f3bbae46a01" | ||
8 | |||
9 | SRC_URI = "${GNU_MIRROR}/gzip/${BP}.tar.gz" | ||
10 | |||
11 | inherit autotools | ||
12 | |||
13 | do_install () { | ||
14 | autotools_do_install | ||
15 | if [ "${PN}" = "${BPN}" ] ; then | ||
16 | # Rename and move files into /bin (FHS), which is typical place for gzip | ||
17 | install -d ${D}${base_bindir} | ||
18 | mv ${D}${bindir}/gunzip ${D}${base_bindir}/gunzip.${PN} | ||
19 | mv ${D}${bindir}/gzip ${D}${base_bindir}/gzip.${PN} | ||
20 | mv ${D}${bindir}/zcat ${D}${base_bindir}/zcat.${PN} | ||
21 | fi | ||
22 | } | ||
23 | |||
24 | pkg_postinst_${PN} () { | ||
25 | if [ "${PN}" = "${BPN}" ] ; then | ||
26 | update-alternatives --install ${base_bindir}/gunzip gunzip gunzip.${PN} 100 | ||
27 | update-alternatives --install ${base_bindir}/gzip gzip gzip.${PN} 100 | ||
28 | update-alternatives --install ${base_bindir}/zcat zcat zcat.${PN} 100 | ||
29 | fi | ||
30 | } | ||
31 | |||
32 | pkg_prerm_${PN} () { | ||
33 | if [ "${PN}" = "${BPN}" ] ; then | ||
34 | update-alternatives --remove gunzip gunzip.${PN} | ||
35 | update-alternatives --remove gzip gzip.${PN} | ||
36 | update-alternatives --remove zcat zcat.${PN} | ||
37 | fi | ||
38 | } | ||
diff --git a/meta/packages/gzip/gzip_1.4.bb b/meta/packages/gzip/gzip_1.4.bb new file mode 100644 index 0000000000..93020ba50b --- /dev/null +++ b/meta/packages/gzip/gzip_1.4.bb | |||
@@ -0,0 +1,5 @@ | |||
1 | require gzip.inc | ||
2 | |||
3 | PR = "r0" | ||
4 | |||
5 | BBCLASSEXTEND = "native" | ||