wok rev 25140

updated pigz (2.4 -> 2.7)
author Hans-G?nter Theisgen
date Wed Jun 29 14:12:55 2022 +0100 (22 months ago)
parents 7d834c8a352e
children 86267c34e70e
files phpmyadmin/description.txt pigz/description.txt pigz/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/phpmyadmin/description.txt	Wed Jun 29 14:12:55 2022 +0100
     1.3 @@ -0,0 +1,6 @@
     1.4 +PhpMyAdmin is a free software tool written in PHP, intended to handle the
     1.5 +administration of MySQL over the Web.
     1.6 +PhpMyAdmin supports a wide range of operations on MySQL and MariaDB.
     1.7 +Frequently used operations (managing databases, tables, columns, relations,
     1.8 +indexes, users, permissions, etc) can be performed via the user interface,
     1.9 +while you still have the ability to directly execute any SQL statement. 
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/pigz/description.txt	Wed Jun 29 14:12:55 2022 +0100
     2.3 @@ -0,0 +1,6 @@
     2.4 +Pigz, which stands for parallel implementation of gzip,
     2.5 +is a fully functional replacement for gzip that exploits
     2.6 +multiple processors and multiple cores to the hilt when
     2.7 +compressing data.
     2.8 +Pigz was written by Mark Adler, and uses the zlib and
     2.9 +pthread libraries.
     3.1 --- a/pigz/receipt	Wed Jun 29 11:19:44 2022 +0100
     3.2 +++ b/pigz/receipt	Wed Jun 29 14:12:55 2022 +0100
     3.3 @@ -1,14 +1,15 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="pigz"
     3.7 -VERSION="2.4"
     3.8 +VERSION="2.7"
     3.9  CATEGORY="base-system"
    3.10  SHORT_DESC="Parallel Implementation of GZip."
    3.11  MAINTAINER="pascal.bellard@slitaz.org"
    3.12  LICENSE="Apache"
    3.13 +WEB_SITE="https://zlib.net/pigz/"
    3.14 +
    3.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.16 -WEB_SITE="http://www.zlib.net/pigz"
    3.17 -WGET_URL="https://github.com/madler/pigz/archive/v$VERSION.tar.gz"
    3.18 +WGET_URL="${WEB_SITE}$TARBALL"
    3.19  
    3.20  DEPENDS=""
    3.21  BUILD_DEPENDS=""
    3.22 @@ -24,25 +25,28 @@
    3.23  compile_rules()
    3.24  {
    3.25  	sed -i 's/-lz/& -lm/' Makefile
    3.26 +
    3.27  	make
    3.28  }
    3.29  
    3.30  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.31  genpkg_rules()
    3.32  {
    3.33 -	mkdir -p $fs/usr/bin $install/usr/share/man
    3.34 -	cp $src/pigz.1 $install/usr/share/man
    3.35 -	cp $src/pigz $fs/usr/bin
    3.36 -	ln -s pigz $fs/usr/bin/unpigz
    3.37 +	mkdir -p $fs/usr/bin
    3.38 +	mkdir -p $install/usr/share/man
    3.39 +
    3.40 +	cp $src/pigz.1	$install/usr/share/man
    3.41 +	cp $src/pigz	$fs/usr/bin
    3.42 +	ln -s pigz	$fs/usr/bin/unpigz
    3.43  }
    3.44  
    3.45  pre_remove()
    3.46  {
    3.47 -	sed -i '/gzip=pigz/d' $1/etc/profile
    3.48 +	sed -i '/gzip=pigz/d'		$1/etc/profile
    3.49  }
    3.50  
    3.51  post_install()
    3.52  {
    3.53 -	grep -qs 'gzip=pigz' $1/etc/profile ||
    3.54 -	echo 'alias gzip=pigz' >> $1/etc/profile
    3.55 +	grep -qs 'gzip=pigz'		$1/etc/profile ||
    3.56 +	echo 'alias gzip=pigz' >>	$1/etc/profile
    3.57  }