What's new? | Help | Directory | Sign in
Google
dynee5
DyneTK, a visual Newton Script Developer Environment
  
  
  
  
    
Search
for
Updated Jul 08, 2007 by melcher.matthias
DyneTK  
DyneTK, the Dyne Toolkit

New Features in SVN

New features in WWNC 2007 Alpha release binaries

Features in May '07 Binaries

Roadmap

In it's current state DyneTK is capable of creating, compiling, and downloading fully functional Newton applications. Proto templates are not yet implemented. Many little features are still missing, and there has been no QA yet.

This is a list of tasks, somewhat in the order of implementation:

Developers

If you are interested in developing Dyne, I'd love to hear from you. Please contact me via EMail: dyneATmatthiasm.com

How To Build

DyneTK can be built on OS X and Linux using the command line, and on MSWIndows using VisualC 2005 (V8) and probably above.

First, we need to create a directory containing all required components. Let's call it "dev". Inside "dev", we create the subdirectories "dyne", "newt0", and "fltk" by checking out the following Subversion repositories:

> svn co http://dynee5.googlecode.com/svn/trunk dyne
> svn co svn://so-kukan.com/gnue/NEWT0/trunk newt0
> svn co http://svn.easysw.com/public/fltk/fltk/branches/branch-1.1 fltk

First, we need to build and install FLTK:

> cd fltk
> autoconf
> ./configure --enable-threads --enable-debug
> make
> sudo make install
> cd ..

Next, we build Newt/0:

> cd newt0
> touch contrib/inwt/inwt.in
> autoconf
> ./configure --enable-compat
> make libnewt
> cd ..

Finally, we can build DyneTK:

> cd dyne/DyneTK
> make
> ./dynetk

Enjoy!


Sign in to add a comment