wok rev 25010

updated ode and ode-dev (0.16.1 -> 0.16.2)
author Hans-G?nter Theisgen
date Mon May 16 17:33:55 2022 +0100 (23 months ago)
parents 816ad9b606a7
children 61d8634c86c3
files ode-dev/receipt ode/description.txt ode/receipt
line diff
     1.1 --- a/ode-dev/receipt	Mon May 16 17:27:45 2022 +0100
     1.2 +++ b/ode-dev/receipt	Mon May 16 17:33:55 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="ode-dev"
     1.7 -VERSION="0.16.1"
     1.8 +VERSION="0.16.2"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Development files for ode."
    1.11  MAINTAINER="slaxemulator@gmail.com"
    1.12 @@ -14,10 +14,8 @@
    1.13  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.14  genpkg_rules()
    1.15  {
    1.16 -	mkdir -p $fs/usr/lib
    1.17 -
    1.18 -	cp -a $install/usr/bin			$fs/usr
    1.19 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.20 -	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.21 -	cp -a $install/usr/include		$fs/usr
    1.22 +	cook_copy_folders	bin
    1.23 +	cook_copy_folders	include
    1.24 +	cook_copy_folders	pkgconfig
    1.25 +	cook_copy_files		*.*a
    1.26  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/ode/description.txt	Mon May 16 17:33:55 2022 +0100
     2.3 @@ -0,0 +1,10 @@
     2.4 +ODE is an open source, high performance library for simulating
     2.5 +rigid body dynamics.
     2.6 +It is fully featured, stable, mature and platform independent
     2.7 +with an easy to use C/C++ API.
     2.8 +It has advanced joint types and integrated collision detection
     2.9 +with friction.
    2.10 +ODE is useful for simulating vehicles, objects in virtual reality
    2.11 +environments and virtual creatures.
    2.12 +It is currently used in many computer games, 3D authoring tools
    2.13 +and simulation tools.
     3.1 --- a/ode/receipt	Mon May 16 17:27:45 2022 +0100
     3.2 +++ b/ode/receipt	Mon May 16 17:33:55 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="ode"
     3.7 -VERSION="0.16.1"
     3.8 +VERSION="0.16.2"
     3.9  CATEGORY="misc"
    3.10  SHORT_DESC="An open source, high performance library for simulating rigid body dynamics."
    3.11  MAINTAINER="slaxemulator@gmail.com"
    3.12 @@ -33,12 +33,11 @@
    3.13  		--enable-shared			\
    3.14  		$CONFIGURE_ARGS &&
    3.15  	make &&
    3.16 -	make DESTDIR=$DESTDIR install
    3.17 +	make install DESTDIR=$DESTDIR
    3.18  }
    3.19  
    3.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.21  genpkg_rules()
    3.22  {
    3.23 -	mkdir -p $fs/usr/lib
    3.24 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.25 +	cook_copy_files	*.so*
    3.26  }