wok-current rev 23258
updated ode and ode-dev (0.16 -> 0.16.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Mar 26 06:55:46 2020 +0100 (2020-03-26) |
parents | 9e2faa1f4ad1 |
children | 45041bf06ff9 |
files | ode-dev/receipt ode/receipt |
line diff
1.1 --- a/ode-dev/receipt Thu Mar 26 06:34:52 2020 +0100 1.2 +++ b/ode-dev/receipt Thu Mar 26 06:55:46 2020 +0100 1.3 @@ -1,14 +1,14 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="ode-dev" 1.7 -VERSION="0.16" 1.8 +VERSION="0.16.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Development files for ode." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 LICENSE="LGPL2.1 BSD" 1.13 WEB_SITE="https://www.ode.org/" 1.14 1.15 -DEPENDS="ode bash pkg-config" 1.16 +DEPENDS="bash ode pkg-config" 1.17 WANTED="ode" 1.18 1.19 # Rules to gen a SliTaz package suitable for Tazpkg.
2.1 --- a/ode/receipt Thu Mar 26 06:34:52 2020 +0100 2.2 +++ b/ode/receipt Thu Mar 26 06:55:46 2020 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="ode" 2.7 -VERSION="0.16" 2.8 +VERSION="0.16.1" 2.9 CATEGORY="misc" 2.10 SHORT_DESC="An open source, high performance library for simulating rigid body dynamics." 2.11 MAINTAINER="slaxemulator@gmail.com" 2.12 @@ -11,16 +11,15 @@ 2.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.14 WGET_URL="https://bitbucket.org/odedevs/$PACKAGE/downloads/$TARBALL" 2.15 2.16 -DEPENDS="" 2.17 +DEPENDS="gcc83-lib-base" 2.18 BUILD_DEPENDS="gcc83 libtool" 2.19 2.20 # Rules to configure and make the package. 2.21 compile_rules() 2.22 { 2.23 - export CC=gcc-83 2.24 - export CXX=g++-83 2.25 - 2.26 ./configure \ 2.27 + CC=gcc-83 \ 2.28 + CXX=g++-83 \ 2.29 --prefix=/usr \ 2.30 --infodir=/usr/share/info \ 2.31 --mandir=/usr/share/man \ 2.32 @@ -34,5 +33,5 @@ 2.33 genpkg_rules() 2.34 { 2.35 mkdir -p $fs/usr/lib 2.36 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.37 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.38 }