Magellan Linux

Annotation of /trunk/core/gzip/gzip-1.12-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33448 - (hide annotations) (download)
Wed Jul 19 19:13:07 2023 UTC (10 months ago) by niro
File size: 702 byte(s)
-ver bump to 1.12-r1
1 niro 33448 # $Id$
2    
3     PNAME="gzip"
4     PVER="1.12"
5     PBUILD="r1"
6    
7     PCAT="app-arch"
8    
9     DESCRIPTION="Standard GNU compressor."
10     HOMEPAGE="http://www.gnu.org/software/gzip/gzip.html"
11    
12     DEPEND=">= virtual/glibc"
13     PROVIDE="virtual/gzip"
14    
15     SRCFILE="${PNAME}-${PVER}.tar.gz"
16     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
17    
18     sminclude mbuild mtools
19     msetfeature "!check"
20    
21     SRC_URI=(
22     gnu://${PNAME}/${SRCFILE}
23     mirror://${PNAME}/${SRCFILE}
24     )
25    
26     UP2DATE="updatecmd_gnu ${PNAME} gz"
27    
28     src_install()
29     {
30     cd ${SRCDIR}
31     mmake DESTDIR=${BINDIR} install || die
32    
33     # missing: gzcat
34     mlink zcat /usr/bin/gzcat || die
35    
36     # and the docs too
37     minstalldocs \
38     AUTHORS COPYING ChangeLog INSTALL NEWS README \
39     README-alpha THANKS TODO algorithm.doc gzip.doc || die
40     }