wok diff libee/receipt @ rev 24885

updated mcabber (0.9.10 -> 1.1.2)
author Hans-G?nter Theisgen
date Fri Apr 01 07:52:41 2022 +0100 (2022-04-01)
parents 535c806240cc
children
line diff
     1.1 --- a/libee/receipt	Thu Feb 17 12:02:46 2022 +0000
     1.2 +++ b/libee/receipt	Fri Apr 01 07:52:41 2022 +0100
     1.3 @@ -1,14 +1,15 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libee"
     1.7 -VERSION="0.3.2"
     1.8 +VERSION="0.4.1"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="An Event Expression Library inspired by CEE"
    1.11 +SHORT_DESC="An Event Expression Library inspired by CEE."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="LGPL2.1"
    1.14  WEB_SITE="http://www.libee.org/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WGET_URL="http://www.libee.org/files/download/$TARBALL"
    1.18 +WGET_URL="${WEB_SITE}files/download/$TARBALL"
    1.19  
    1.20  DEPENDS="libestr"
    1.21  BUILD_DEPENDS="libestr-dev automake"
    1.22 @@ -23,18 +24,21 @@
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26 -	cd $src
    1.27 +	# 0.4.1 not required
    1.28  	# Patch from http://www.gossamer-threads.com/lists/rsyslog/users/4600
    1.29 -	patch -p 1 < $stuff/libee-build-fix.patch
    1.30 -	./configure $CONFIGURE_ARGS \
    1.31 -		--disable-testbench && make -j 1 && make install
    1.32 +	# patch -p 1 < $stuff/libee-build-fix.patch
    1.33 +
    1.34 +	./configure			\
    1.35 +		--disable-testbench	\
    1.36 +		$CONFIGURE_ARGS &&
    1.37 +	make -j 1 &&
    1.38 +	make install
    1.39 +	# Do not remove "-j 1" !
    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/lib
    1.46 -	
    1.47 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.48 -	cp -a $install/usr/sbin $fs/usr
    1.49 +	cook_copy_folders	sbin
    1.50 +	cook_copy_files		*.so*
    1.51  }