blob: d69f06fc9d8b732db6ca38350692a40456bcab3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: The Open Dynamics Engine physics SDK.
# URL: http://www.ode.org/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Aaron Marks, nymacro at gmail dot com
# Depends on: mesa3d
name=ode
version=0.11.1
release=1
source=(http://dl.sourceforge.net/sourceforge/opende/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-static \
--disable-debug
make
make DESTDIR=$PKG install
}
|