Difference between revisions of "DevTools:Bindings"

From CrossWire Bible Society
Jump to: navigation, search
(Created page with "==Sword Bindings== ===SWIG bindings == In order to use libsword from Perl, Python or other scripting languages you need to compile the SWIG bindings section too. sudo apt-get...")
 
Line 1: Line 1:
 
==Sword Bindings==
 
==Sword Bindings==
  
===SWIG bindings ==
+
=== SWIG bindings ===
 
In order to use libsword from Perl, Python or other scripting languages you need to compile the SWIG bindings section too.
 
In order to use libsword from Perl, Python or other scripting languages you need to compile the SWIG bindings section too.
  
Line 13: Line 13:
 
   cd perl
 
   cd perl
 
   sudo make install
 
   sudo make install
 +
 +
[[Category:Development tools]]

Revision as of 19:30, 10 June 2013

Sword Bindings

SWIG bindings

In order to use libsword from Perl, Python or other scripting languages you need to compile the SWIG bindings section too.

 sudo apt-get install swig
 cd bindings/swig/package
 libtoolize --force
 ./autogen.sh
 ./configure
 make perlswig
 make perl_make
 cd perl
 sudo make install