diff options
author | Juergen Daubert <jue@jue.li> | 2021-09-04 14:31:18 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-09-04 14:31:18 +0200 |
commit | aacbe3a5082c5e727857ab4380f606b9641ef62c (patch) | |
tree | 6527159402544a5c021444a80ca1da5f40bad12d /gzip | |
parent | 5e04098940f88d9340d4324e6d5dbbde73bd5fad (diff) | |
download | core-aacbe3a5082c5e727857ab4380f606b9641ef62c.tar.gz core-aacbe3a5082c5e727857ab4380f606b9641ef62c.tar.xz |
gzip: update to 1.11
Diffstat (limited to 'gzip')
-rw-r--r-- | gzip/.signature | 6 | ||||
-rw-r--r-- | gzip/Pkgfile | 36 |
2 files changed, 21 insertions, 21 deletions
diff --git a/gzip/.signature b/gzip/.signature index a918e372..5c9f8d2b 100644 --- a/gzip/.signature +++ b/gzip/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/core.pub -RWRJc1FUaeVeql6ZnMC6ANYhqbCDXWgbKrhW5Q9OpK3ogUtNz4JpcfDaS67286k3Jjmx6ZLqitzNzkr8OsfjZ5Zns1NTL496MAg= -SHA256 (Pkgfile) = 0a055808978177a7b7f9e92bcd5926574eea3b2581780f9f94bf33e93788f23f +RWRJc1FUaeVeqvnvRwTcCkYQRh/6Wz0b/Koy/Z2Vi6Bxe8OtTqwWkYYDY7notLNI/yhPcLG6tUWZaIY9XcPOqrlS++np9aDkcgU= +SHA256 (Pkgfile) = 41df443f694442aede2b90ec83042ea4e02ca009ca7e740573db8e4c12252532 SHA256 (.footprint) = 3a992d09f502e9c7dedc0dc8aef10b908ca3914d823c6ce0c542ac5a780e47c6 -SHA256 (gzip-1.10.tar.xz) = 8425ccac99872d544d4310305f915f5ea81e04d0f437ef1a230dc9d1c819d7c0 +SHA256 (gzip-1.11.tar.xz) = 9b9a95d68fdcb936849a4d6fada8bf8686cddf58b9b26c9c4289ed0c92a77907 diff --git a/gzip/Pkgfile b/gzip/Pkgfile index 34160e5d..12229ab1 100644 --- a/gzip/Pkgfile +++ b/gzip/Pkgfile @@ -1,30 +1,30 @@ # Description: GNU compression utility (replacement for compress) -# URL: http://www.gzip.org/ -# Maintainer: CRUX System Team, core-ports at crux dot nu +# URL: http://www.gzip.org/ +# Maintainer: CRUX System Team, core-ports at crux dot nu name=gzip -version=1.10 +version=1.11 release=1 source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz) build() { - cd $name-$version - ./configure --prefix=/usr - make - make DESTDIR=$PKG install + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install - install -d $PKG/bin - mv $PKG/usr/bin/{gzip,gunzip,zcat} $PKG/bin + install -d $PKG/bin + mv $PKG/usr/bin/{gzip,gunzip,zcat} $PKG/bin - rm $PKG/usr/share/man/man1/{gunzip.1,zcat.1,zcmp.1} - ln -s gzip.1.gz $PKG/usr/share/man/man1/gunzip.1.gz - ln -s gzip.1.gz $PKG/usr/share/man/man1/zcat.1.gz - ln -s zdiff.1.gz $PKG/usr/share/man/man1/zcmp.1.gz + rm $PKG/usr/share/man/man1/{gunzip.1,zcat.1,zcmp.1} + ln -s gzip.1.gz $PKG/usr/share/man/man1/gunzip.1.gz + ln -s gzip.1.gz $PKG/usr/share/man/man1/zcat.1.gz + ln -s zdiff.1.gz $PKG/usr/share/man/man1/zcmp.1.gz - # make uncompress a symlink to gunzip, since the hardlink - # will not work if / and /usr are on different file systems. - rm $PKG/usr/bin/uncompress - ln -s /bin/gunzip $PKG/usr/bin/uncompress + # make uncompress a symlink to gunzip, since the hardlink + # will not work if / and /usr are on different file systems. + rm $PKG/usr/bin/uncompress + ln -s /bin/gunzip $PKG/usr/bin/uncompress - rm -r $PKG/usr/share/info + rm -r $PKG/usr/share/info } |