wok diff libxml2/receipt @ rev 22377

linux[64]-zram: modified modprobe command according to bug report 230
author Hans-G?nter Theisgen
date Thu Nov 28 07:37:48 2019 +0100 (2019-11-28)
parents f6332424127f
children 1394632bbfa7
line diff
     1.1 --- a/libxml2/receipt	Sun Feb 23 00:35:49 2014 +0100
     1.2 +++ b/libxml2/receipt	Thu Nov 28 07:37:48 2019 +0100
     1.3 @@ -1,18 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libxml2"
     1.7 -VERSION="2.8.0"
     1.8 +VERSION="2.9.9"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="Libxml2 is the XML C parser and toolkit."
    1.11 +SHORT_DESC="XML C parser and toolkit."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="MIT"
    1.14 +WEB_SITE="http://xmlsoft.org/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="http://xmlsoft.org/"
    1.18  WGET_URL="ftp://xmlsoft.org/libxml2/$TARBALL"
    1.19 -HOST_ARCH="i486 arm"
    1.20  
    1.21  DEPENDS="zlib"
    1.22 -BUILD_DEPENDS="zlib-dev python-dev autoconf automake libtool"
    1.23 +BUILD_DEPENDS="autoconf automake libtool python-dev zlib-dev"
    1.24 +
    1.25 +HOST_ARCH="i486 arm"
    1.26  
    1.27  # When cross compiling Python is installed in chroot and is used
    1.28  # by cross tools, cook dont need to install it in /usr/cross/arm
    1.29 @@ -30,15 +32,15 @@
    1.30  compile_rules()
    1.31  {
    1.32  	autoreconf -fi
    1.33 -	./configure \
    1.34 -		--prefix=/usr \
    1.35 -		--infodir=/usr/share/info \
    1.36 -		--mandir=/usr/share/man \
    1.37 -		--with-html-dir=/usr/share/doc \
    1.38 -		--with-threads \
    1.39 -		--with-history \
    1.40 +	./configure				\
    1.41 +		--prefix=/usr			\
    1.42 +		--infodir=/usr/share/info	\
    1.43 +		--mandir=/usr/share/man		\
    1.44 +		--with-html-dir=/usr/share/doc	\
    1.45 +		--with-threads			\
    1.46 +		--with-history			\
    1.47  	$CONFIGURE_ARGS $ARCH_ARGS &&
    1.48 -	make &&
    1.49 +	make -j 1 &&
    1.50  	make DESTDIR=$DESTDIR install 2>&1 | grep -v "can't stat './..html':"
    1.51  }
    1.52