wok view ode/receipt @ rev 14137

cbrpager: move from undigest wok (and slightly modified)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 01 15:32:54 2013 +0000 (2013-03-01)
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 }