wok diff apr/receipt @ rev 22760

updated findutils (4.6.0 -> 4.7.0)
author Hans-G?nter Theisgen
date Fri Jan 24 17:10:12 2020 +0100 (2020-01-24)
parents 21df9c566947
children dfe45ff0a274
line diff
     1.1 --- a/apr/receipt	Tue Sep 24 21:55:30 2013 +0000
     1.2 +++ b/apr/receipt	Fri Jan 24 17:10:12 2020 +0100
     1.3 @@ -1,39 +1,40 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="apr"
     1.7 -VERSION="1.4.6"
     1.8 +VERSION="1.7.0"
     1.9  CATEGORY="misc"
    1.10 -SHORT_DESC="Apache Portable Runtime Library"
    1.11 +SHORT_DESC="Apache Portable Runtime Library."
    1.12  MAINTAINER="lehswe@gmail.com"
    1.13  LICENSE="Apache"
    1.14 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 -WEB_SITE="http://apr.apache.org"
    1.16 -WGET_URL="http://mir2.ovh.net/ftp.apache.org/dist/$PACKAGE/$TARBALL
    1.17 - http://apache.crihan.fr/dist/$PACKAGE/$TARBALL"
    1.18 -CROSS="error: cannot check for file existence when cross compiling"
    1.19 +WEB_SITE="https://apr.apache.org"
    1.20 +
    1.21 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.22 +WGET_URL="http://www.apache.org/dist/$PACKAGE/$TARBALL"
    1.23  
    1.24  DEPENDS="util-linux-uuid"
    1.25  BUILD_DEPENDS="util-linux-uuid-dev"
    1.26  
    1.27 +CROSS="error: cannot check for file existence when cross compiling"
    1.28 +
    1.29  # Rules to configure and make the package.
    1.30  compile_rules()
    1.31  {
    1.32 -	cd $src
    1.33 -	./configure \
    1.34 -		--prefix=/usr \
    1.35 -		--with-installbuilddir=/usr/share/apr-1/build \
    1.36 -		--enable-nonportable-atomics \
    1.37 -		--with-devrandom \
    1.38 -		--build=$HOST_SYSTEM \
    1.39 +	./configure						\
    1.40 +		--prefix=/usr					\
    1.41 +		--with-installbuilddir=/usr/share/apr-1/build	\
    1.42 +		--enable-nonportable-atomics			\
    1.43 +		--with-devrandom				\
    1.44 +		--build=$HOST_SYSTEM				\
    1.45  		--host=$HOST_SYSTEM 2>&1 | grep -v '/libtool:' &&
    1.46 -	make && make install
    1.47 +	make &&
    1.48 +	make install
    1.49  }
    1.50  
    1.51  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.52  genpkg_rules()
    1.53  {
    1.54  	mkdir -p $fs/usr/lib
    1.55 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.56 -	cp -a $install/usr/lib/*.exp $fs/usr/lib
    1.57 +
    1.58 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.59 +	cp -a $install/usr/lib/*.exp	$fs/usr/lib
    1.60  }
    1.61 -