wok diff log4c/receipt @ rev 22040

updated tokyocabinet and tokyocabinet-dev (1.4.32 -> 1.4.48)
author Hans-G?nter Theisgen
date Mon Oct 21 17:24:12 2019 +0100 (2019-10-21)
parents 8d73417cf2d4
children 65d7d867e0c1
line diff
     1.1 --- a/log4c/receipt	Mon Aug 12 18:18:51 2013 +0000
     1.2 +++ b/log4c/receipt	Mon Oct 21 17:24:12 2019 +0100
     1.3 @@ -1,14 +1,15 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="log4c"
     1.7 -VERSION="1.2.1"
     1.8 +VERSION="1.2.4"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="Logging for C Library"
    1.11 +SHORT_DESC="Logging for C Library."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="LGPL2.1"
    1.14 -WEB_SITE="http://log4c.sourceforge.net"
    1.15 +WEB_SITE="https://log4c.sourceforge.io"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18 -WGET_URL="http://prdownloads.sourceforge.net/log4c/$TARBALL"
    1.19 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.20  
    1.21  DEPENDS=""
    1.22  BUILD_DEPENDS=""
    1.23 @@ -16,14 +17,18 @@
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	./configure $CONFIGURE_ARGS \
    1.28 -		--sysconfdir=/etc && make && make install
    1.29 +	./configure			\
    1.30 +		--sysconfdir=/etc	\
    1.31 +		$CONFIGURE_ARGS &&
    1.32 +	make -j 1 &&
    1.33 +	make install
    1.34  }
    1.35  
    1.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.37  genpkg_rules()
    1.38  {
    1.39  	mkdir -p $fs/usr/lib $fs/etc
    1.40 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.41 -	cp -a $install/etc/log4crc.sample $fs/etc/log4crc
    1.42 +
    1.43 +	cp -a $install/usr/lib/*.so*		$fs/usr/lib
    1.44 +	cp -a $install/etc/log4crc.sample	$fs/etc/log4crc
    1.45  }