wok rev 21603
updated ode and ode-dev (0.11.1 -> 0.16)
author | Hans-G?nter Theisgen |
---|---|
date | Thu May 23 10:46:10 2019 +0100 (2019-05-23) |
parents | d4bd8fc86eae |
children | 106635122fe4 5425712349aa |
files | ode-dev/receipt ode/receipt |
line diff
1.1 --- a/ode-dev/receipt Thu May 23 11:17:48 2019 +0200 1.2 +++ b/ode-dev/receipt Thu May 23 10:46:10 2019 +0100 1.3 @@ -1,23 +1,23 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="ode-dev" 1.7 -VERSION="0.11.1" 1.8 +VERSION="0.16" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="devel files for ode" 1.11 +SHORT_DESC="Development files for ode." 1.12 MAINTAINER="slaxemulator@gmail.com" 1.13 LICENSE="LGPL2.1 BSD" 1.14 -WEB_SITE="http://www.ode.org/" 1.15 -WANTED="ode" 1.16 +WEB_SITE="https://www.ode.org/" 1.17 1.18 DEPENDS="ode bash pkg-config" 1.19 +WANTED="ode" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 mkdir -p $fs/usr/lib 1.25 - cp -a $install/usr/bin $fs/usr 1.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.27 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.28 - cp -a $install/usr/include $fs/usr 1.29 + 1.30 + cp -a $install/usr/bin $fs/usr 1.31 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.32 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.33 + cp -a $install/usr/include $fs/usr 1.34 } 1.35 -
2.1 --- a/ode/receipt Thu May 23 11:17:48 2019 +0200 2.2 +++ b/ode/receipt Thu May 23 10:46:10 2019 +0100 2.3 @@ -1,27 +1,33 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="ode" 2.7 -VERSION="0.11.1" 2.8 +VERSION="0.16" 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 LICENSE="LGPL2.1 BSD" 2.13 +WEB_SITE="https://www.ode.org/" 2.14 + 2.15 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 +WGET_URL="https://bitbucket.org/odedevs/$PACKAGE/downloads/$TARBALL" 2.17 + 2.18 DEPENDS="" 2.19 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.20 -WEB_SITE="http://www.ode.org/" 2.21 -WGET_URL="$SF_MIRROR/opende/$TARBALL" 2.22 +BUILD_DEPENDS="gcc83 libtool" 2.23 2.24 # Rules to configure and make the package. 2.25 compile_rules() 2.26 { 2.27 - cd $src 2.28 - ./configure \ 2.29 - --prefix=/usr \ 2.30 - --infodir=/usr/share/info \ 2.31 - --mandir=/usr/share/man \ 2.32 - --enable-shared \ 2.33 + export CC=gcc-83 2.34 + export CXX=g++-83 2.35 + 2.36 + ./configure \ 2.37 + --prefix=/usr \ 2.38 + --infodir=/usr/share/info \ 2.39 + --mandir=/usr/share/man \ 2.40 + --enable-shared \ 2.41 $CONFIGURE_ARGS && 2.42 - make && make DESTDIR=$DESTDIR install 2.43 + make && 2.44 + make DESTDIR=$DESTDIR install 2.45 } 2.46 2.47 # Rules to gen a SliTaz package suitable for Tazpkg.