wok view ode/receipt @ rev 10717

Up: slitaz-boot-scripts (4.4) - WARNING: no more hwconf.sh and i18n.sh so we sed in rcS.conf to change that or next boot boot get lots of problem
author Christophe Lincoln <pankso@slitaz.org>
date Sat May 28 23:23:13 2011 +0200 (2011-05-28)
parents
children 23c3aed67cd9
line source
1 # SliTaz package receipt.
3 PACKAGE="ode"
4 VERSION="0.11.1"
5 CATEGORY="misc"
6 SHORT_DESC="An open source, high performance library for simulating rigid body dynamics."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.ode.org/"
11 WGET_URL="$SF_MIRROR/opende/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 --enable-shared \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }