wok diff xz/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 46f4f0519187
children 922f061231c2
line diff
     1.1 --- a/xz/receipt	Mon May 07 20:45:28 2018 +0200
     1.2 +++ b/xz/receipt	Sun Jun 14 23:18:03 2020 -0400
     1.3 @@ -1,33 +1,36 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="xz"
     1.7 -VERSION="5.2.4"
     1.8 +VERSION="5.2.5"
     1.9  CATEGORY="base-system"
    1.10 +TAGS="compression archive"
    1.11  SHORT_DESC="General-purpose data compressor with a high compression ratio."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="PublicDomain LGPL2.1 GPL2 GPL3"
    1.14 +WEB_SITE="https://tukaani.org/xz"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.17 -WEB_SITE="http://tukaani.org/xz"
    1.18  WGET_URL="$WEB_SITE/$TARBALL"
    1.19 -TAGS="compression archive"
    1.20 -HOST_ARCH="i486 arm x86_64"
    1.21  
    1.22  DEPENDS="liblzma"
    1.23  BUILD_DEPENDS=""
    1.24  
    1.25 +HOST_ARCH="i486 arm x86_64"
    1.26 +
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29  {
    1.30 -	./configure \
    1.31 -		--enable-dynamic=yes \
    1.32 -		--enable-small \
    1.33 +	./configure			\
    1.34 +		--enable-dynamic=yes	\
    1.35 +		--enable-small		\
    1.36  		$CONFIGURE_ARGS &&
    1.37 -	make && make install
    1.38 +	make &&
    1.39 +	make install
    1.40  }
    1.41  
    1.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.43  genpkg_rules()
    1.44  {
    1.45 -	mkdir -p $fs/usr/bin $fs/usr/lib
    1.46 -	cp -a $install/usr/bin/xz $fs/usr/bin
    1.47 +	mkdir -p $fs/usr/bin
    1.48 +	cp -a $install/usr/bin/xz	$fs/usr/bin
    1.49  }