diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2003-12-03 19:00:56 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2003-12-03 19:00:56 +0000 |
commit | fb68212e17fd5a8adb32cd706b2d53792a2a6c63 (patch) | |
tree | 371c4cba445516618b825aceb4c1796adfee3850 /devel/ode/Makefile | |
parent | 631d4d6755b85bbec1e2284cb81b38489bac8967 (diff) | |
download | pkgsrc-fb68212e17fd5a8adb32cd706b2d53792a2a6c63.tar.gz |
Initial import of ode-0.039 from pkgsrc-wip.
ODE is a free, industrial quality library for simulating articulated
rigid body dynamics - for example ground vehicles, legged creatures,
and moving objects in VR environments. It is fast, flexible, robust
and platform independent, with advanced joints, contact with friction,
and built-in collision detection.
Diffstat (limited to 'devel/ode/Makefile')
-rw-r--r-- | devel/ode/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/devel/ode/Makefile b/devel/ode/Makefile new file mode 100644 index 00000000000..b1a71db36b2 --- /dev/null +++ b/devel/ode/Makefile @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/12/03 19:00:56 xtraeme Exp $ +# + +DISTNAME= ode-0.039 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=opende/} +EXTRACT_SUFX= .tgz + +MAINTAINER= xtraeme@NetBSD.org +HOMEPAGE= http://opende.sourceforge.net/ +COMMENT= Library for the simulation of Rigid Body Dynamics + +USE_BUILDLINK2= yes +USE_GMAKE= yes +USE_X11= yes + +do-configure: + cd ${WRKSRC} && ${GMAKE} configure +do-build: + cd ${WRKSRC} && ${GMAKE} ode-lib +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/include/ode + ${INSTALL_DATA} ${WRKSRC}/include/ode/*.h ${PREFIX}/include/ode + ${INSTALL_DATA} ${WRKSRC}/lib/libode.a ${PREFIX}/lib + +.include "../../mk/bsd.pkg.mk" |