# HG changeset patch # User Hans-G?nter Theisgen # Date 1652718835 -3600 # Node ID 11d19e4dd71e104a27983f513384ae465e83a1bc # Parent 816ad9b606a770b384869ea74b5521448497af3a updated ode and ode-dev (0.16.1 -> 0.16.2) diff -r 816ad9b606a7 -r 11d19e4dd71e ode-dev/receipt --- a/ode-dev/receipt Mon May 16 17:27:45 2022 +0100 +++ b/ode-dev/receipt Mon May 16 17:33:55 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="ode-dev" -VERSION="0.16.1" +VERSION="0.16.2" CATEGORY="development" SHORT_DESC="Development files for ode." MAINTAINER="slaxemulator@gmail.com" @@ -14,10 +14,8 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/include $fs/usr + cook_copy_folders bin + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r 816ad9b606a7 -r 11d19e4dd71e ode/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ode/description.txt Mon May 16 17:33:55 2022 +0100 @@ -0,0 +1,10 @@ +ODE is an open source, high performance library for simulating +rigid body dynamics. +It is fully featured, stable, mature and platform independent +with an easy to use C/C++ API. +It has advanced joint types and integrated collision detection +with friction. +ODE is useful for simulating vehicles, objects in virtual reality +environments and virtual creatures. +It is currently used in many computer games, 3D authoring tools +and simulation tools. diff -r 816ad9b606a7 -r 11d19e4dd71e ode/receipt --- a/ode/receipt Mon May 16 17:27:45 2022 +0100 +++ b/ode/receipt Mon May 16 17:33:55 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="ode" -VERSION="0.16.1" +VERSION="0.16.2" CATEGORY="misc" SHORT_DESC="An open source, high performance library for simulating rigid body dynamics." MAINTAINER="slaxemulator@gmail.com" @@ -33,12 +33,11 @@ --enable-shared \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }